Class: cRigidBodySolutionTest

This class can be inherited into your TTAPI project for testing Rigid Body solutions. Input desired testing protocol for Rigid Bodies within the RigidBodySolutionTest member function of the inherited class, and attach/detach this class onto a Rigid Body using the following functions.

Declaration: cRigidBodySolutionTest

class TTAPI cRigidBodySolutionTest
{
public:
	cRigidBodySolutionTest()  {}
	virtual ~cRigidBodySolutionTest() {}

	//== RigidBody Solution Test ==--

	virtual bool RigidBodySolutionTest( int markerCount, Core::cMarker *markers, bool *markerExists ) { 
		
		//Test rigid body solution
		
		return true;
	}
};

Last updated