예제 #1
0
int main(int argc,char** argv)
{
	char* filename = "file.obj";


	ConvexDecompositionDemo* convexDecompDemo = new ConvexDecompositionDemo();

	convexDecompDemo->initPhysics(filename);



	convexDecompDemo->clientResetScene();

	convexDecompDemo->setCameraDistance(26.f);

	return glutmain(argc, argv,640,480,"Bullet Physics Demo. http://www.continuousphysics.com/Bullet/phpBB2/",convexDecompDemo);
}
예제 #2
0
파일: main.cpp 프로젝트: 382309009/Core3D
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;
}