fixed cmake/jam for HelloWorld sample

This commit is contained in:
ejcoumans
2007-12-15 02:42:33 +00:00
parent a77fca6394
commit 4a3c2506d4
6 changed files with 25 additions and 5 deletions

View File

@@ -126,7 +126,9 @@ void LinearConvexCastDemo::displayCallback(void)
gGjkSimplexSolver.reset();
btSubsimplexConvexCast convexCaster( shapePtr[ 0 ], shapePtr[ 1 ], &gGjkSimplexSolver );
btGjkConvexCast convexCaster(shapePtr[ 0 ], shapePtr[ 1 ], &gGjkSimplexSolver );
//btSubsimplexConvexCast convexCaster( shapePtr[ 0 ], shapePtr[ 1 ], &gGjkSimplexSolver );
btConvexCast::CastResult result;
convexCaster.calcTimeOfImpact( tr[ 0 ], toA, tr[ 1 ], toB, result );