renamed ConcaveShape to btConcaveShape

added btHeightfieldTerrainShape (not done yet)
This commit is contained in:
ejcoumans
2006-11-29 02:11:25 +00:00
parent 6738ed329d
commit 71145de242
12 changed files with 167 additions and 15 deletions

View File

@@ -24,15 +24,15 @@ subject to the following restrictions:
///Concave shape proves an interface concave shapes that can produce triangles that overlapping a given AABB.
///Static triangle mesh, infinite plane, height field/landscapes are example that implement this interface.
class ConcaveShape : public btCollisionShape
class btConcaveShape : public btCollisionShape
{
protected:
float m_collisionMargin;
public:
ConcaveShape();
btConcaveShape();
virtual ~ConcaveShape();
virtual ~btConcaveShape();
virtual void processAllTriangles(btTriangleCallback* callback,const btVector3& aabbMin,const btVector3& aabbMax) const = 0;