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

@@ -32,6 +32,7 @@ subject to the following restrictions:
#include "../ConstraintDemo/ConstraintDemo.h"
#include "../Benchmarks/BenchmarkDemo.h"
#include "../SoftDemo/SoftDemo.h"
#include "../TerrainDemo/TerrainDemo.h"
#include "GlutStuff.h"//OpenGL stuff
@@ -145,6 +146,7 @@ btDemoEntry g_demoEntries[] =
{"Raytracer Test",Raytracer::Create},
{"GjkConvexCast",LinearConvexCastDemo::Create},
{"VehicleDemo",VehicleDemo::Create},
{"TerrainDemo",btCreateTerrainDemo},
{"Benchmark 3000 FALL",BenchmarkDemo1::Create},
{"Benchmark 1000 STACK",BenchmarkDemo2::Create},
{"Benchmark 136 RAGDOLLS",BenchmarkDemo3::Create},

View File

@@ -21,4 +21,5 @@ FrameWorkDemo AllBulletDemos :
../VehicleDemo/VehicleDemo.cpp
../SoftDemo/SoftDemo.cpp
../ConstraintDemo/ConstraintDemo.cpp
../TerrainDemo/TerrainDemo.cpp
;

View File

@@ -19,6 +19,7 @@ AllBulletDemo_SOURCES=\
../GjkConvexCastDemo/LinearConvexCastDemo.cpp \
../ConcaveDemo/ConcavePhysicsDemo.cpp \
../DynamicControlDemo/MotorDemo.cpp \
../TerrainDemo/TerrainDemo.cpp \
DemoEntries.cpp \
DemoEntries.h\
Main.cpp