Committing height field terrain work from tomva1@yahoo.com

This commit is contained in:
john.mccutchan
2008-11-06 19:41:31 +00:00
parent 521314b9e7
commit 9b5df088de
18 changed files with 1257 additions and 130 deletions

View File

@@ -0,0 +1,14 @@
#include "TerrainDemo.h"
#include "GlutStuff.h"
int main(int argc,char** argv)
{
DemoApplication * demo = btCreateTerrainDemo();
btAssert(demo && "failed to create terrain demo object");
return glutmain(argc, argv, 800, 600,
"Terrain Demo. http://www.continuousphysics.com/Bullet/phpBB2/",
demo);
}