bullet3/Demos/SliderConstraintDemo/main.cpp
erwin.coumans 5383ed4930 + need to reset rigid body using 'setCenterOfMassTransform' to reset world inertia tensor
+ fixes in compound algorithm -> recompute contact points
+ add debug drawing to some demos.
+ revert btJacobianEntry change
+ replace dCROSSMAT by btVector3::getSkewSymmetricMatrix
2008-12-02 04:01:56 +00:00

25 lines
608 B
C++
Executable File

/*
Added by Roman Ponomarev (rponom@gmail.com)
April 04, 2008
*/
#include "SliderConstraintDemo.h"
#include "GlutStuff.h"
#include "GLDebugDrawer.h"
#include "btBulletDynamicsCommon.h"
GLDebugDrawer gDebugDrawer;
int main(int argc,char** argv)
{
SliderConstraintDemo* sliderConstraintDemo = new SliderConstraintDemo();
sliderConstraintDemo->initPhysics();
sliderConstraintDemo->getDynamicsWorld()->setDebugDrawer(&gDebugDrawer);
return glutmain(argc, argv,640,480,"Slider Constraint Demo. http://www.continuousphysics.com/Bullet/phpBB2/", sliderConstraintDemo);
}