mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-10 17:30:12 +00:00
5383ed4930
+ fixes in compound algorithm -> recompute contact points + add debug drawing to some demos. + revert btJacobianEntry change + replace dCROSSMAT by btVector3::getSkewSymmetricMatrix
19 lines
476 B
C++
19 lines
476 B
C++
|
|
#include "ForkLiftDemo.h"
|
|
#include "GlutStuff.h"
|
|
#include "GLDebugDrawer.h"
|
|
#include "btBulletDynamicsCommon.h"
|
|
GLDebugDrawer gDebugDrawer;
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
|
|
ForkLiftDemo* pForkLiftDemo = new ForkLiftDemo;
|
|
|
|
pForkLiftDemo->initPhysics();
|
|
pForkLiftDemo->getDynamicsWorld()->setDebugDrawer(&gDebugDrawer);
|
|
|
|
return glutmain(argc, argv,640,480,"Bullet ForkLift Demo. http://www.continuousphysics.com/Bullet/phpBB2/", pForkLiftDemo);
|
|
}
|
|
|