mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-09-15 06:44:28 +00:00
25 lines
470 B
C++
25 lines
470 B
C++
|
|
|
|
#include "ConvexDecompositionDemo.h"
|
|
#include "GlutStuff.h"
|
|
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
const char* filename = "file.obj";
|
|
|
|
|
|
ConvexDecompositionDemo* convexDecompDemo = new ConvexDecompositionDemo();
|
|
|
|
convexDecompDemo->initPhysics(filename);
|
|
|
|
|
|
|
|
convexDecompDemo->clientResetScene();
|
|
|
|
|
|
|
|
return glutmain(argc, argv,640,480,"Bullet Physics Demo. http://www.continuousphysics.com/Bullet/phpBB2/",convexDecompDemo);
|
|
}
|
|
|