From 6c426f95452b90b0a9cf432e1b61aaa163005688 Mon Sep 17 00:00:00 2001 From: "erwin.coumans" Date: Sun, 7 Sep 2008 05:30:35 +0000 Subject: [PATCH] make those members private, in btScaledBvhTriangleMeshShape --- .../CollisionShapes/btScaledBvhTriangleMeshShape.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/BulletCollision/CollisionShapes/btScaledBvhTriangleMeshShape.h b/src/BulletCollision/CollisionShapes/btScaledBvhTriangleMeshShape.h index 6dc1c03bc..7d4c44bbe 100644 --- a/src/BulletCollision/CollisionShapes/btScaledBvhTriangleMeshShape.h +++ b/src/BulletCollision/CollisionShapes/btScaledBvhTriangleMeshShape.h @@ -24,12 +24,14 @@ subject to the following restrictions: ATTRIBUTE_ALIGNED16(class) btScaledBvhTriangleMeshShape : public btConcaveShape { -public: - + btVector3 m_localScaling; btBvhTriangleMeshShape* m_bvhTriMeshShape; +public: + + btScaledBvhTriangleMeshShape(btBvhTriangleMeshShape* childShape,btVector3 localScaling); virtual ~btScaledBvhTriangleMeshShape();