- Timestamp:
- Apr 8, 2009, 12:58:47 AM (16 years ago)
- Location:
- code/branches/questsystem5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem5
- Property svn:mergeinfo changed
-
code/branches/questsystem5/src/bullet/BulletCollision/Gimpact/btGImpactShape.h
r2907 r2908 882 882 class btGImpactMeshShape : public btGImpactShapeInterface 883 883 { 884 btStridingMeshInterface* m_meshInterface;885 886 884 protected: 887 885 btAlignedObjectArray<btGImpactMeshShapePart*> m_mesh_parts; … … 910 908 btGImpactMeshShape(btStridingMeshInterface * meshInterface) 911 909 { 912 m_meshInterface = meshInterface;913 910 buildMeshParts(meshInterface); 914 911 } … … 926 923 927 924 928 btStridingMeshInterface* getMeshInterface()929 {930 return m_meshInterface;931 }932 933 const btStridingMeshInterface* getMeshInterface() const934 {935 return m_meshInterface;936 }937 925 938 926 int getMeshPartCount() const … … 1046 1034 1047 1035 //! call when reading child shapes 1048 virtual void lockChildShapes() const1049 { 1050 btAssert(0); 1051 } 1052 1053 virtual void unlockChildShapes() const1036 virtual void lockChildShapes() 1037 { 1038 btAssert(0); 1039 } 1040 1041 virtual void unlockChildShapes() 1054 1042 { 1055 1043 btAssert(0);
Note: See TracChangeset
for help on using the changeset viewer.