mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-11 01:40:10 +00:00
32bf51aa47
Added ConvexDecompositionDemo to CMake build
33 lines
696 B
C++
33 lines
696 B
C++
|
|
|
|
#include "ConvexDecompositionDemo.h"
|
|
#include "GlutStuff.h"
|
|
#include "GLDebugDrawer.h"
|
|
#include "btBulletDynamicsCommon.h"
|
|
|
|
GLDebugDrawer gDebugDrawer;
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
const char* filename = "file.obj";
|
|
|
|
|
|
ConvexDecompositionDemo* convexDecompDemo = new ConvexDecompositionDemo();
|
|
|
|
convexDecompDemo->initPhysics(filename);
|
|
|
|
convexDecompDemo->getDynamicsWorld()->setDebugDrawer(&gDebugDrawer);
|
|
|
|
|
|
convexDecompDemo->clientResetScene();
|
|
|
|
|
|
|
|
glutmain(argc, argv,640,480,"Bullet Physics Demo. http://www.continuousphysics.com/Bullet/phpBB2/",convexDecompDemo);
|
|
|
|
delete convexDecompDemo;
|
|
|
|
return 0;
|
|
}
|
|
|