mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-11 01:40:10 +00:00
fd1e672fcb
added btDynamicsWorld::getWorldType
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);
|
|
}
|
|
|