Changeset 2430 for code/branches/physics/src/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h
- Timestamp:
- Dec 13, 2008, 11:45:51 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/physics/src/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h
r2192 r2430 25 25 struct btCollisionResult; 26 26 27 /// contact breaking and merging threshold27 ///maximum contact breaking and merging threshold 28 28 extern btScalar gContactBreakingThreshold; 29 29 … … 55 55 int m_cachedPoints; 56 56 57 btScalar m_contactBreakingThreshold; 58 57 59 58 60 /// sort cached points so most isolated points come first … … 69 71 btPersistentManifold(); 70 72 71 btPersistentManifold(void* body0,void* body1,int bla) 72 : m_body0(body0),m_body1(body1),m_cachedPoints(0) 73 btPersistentManifold(void* body0,void* body1,int , btScalar contactBreakingThreshold) 74 : m_body0(body0),m_body1(body1),m_cachedPoints(0), 75 m_contactBreakingThreshold(contactBreakingThreshold) 73 76 { 74 (void)bla;77 75 78 } 76 79 … … 107 110 } 108 111 109 /// 112 ///@todo: get this margin from the current physics / collision environment 110 113 btScalar getContactBreakingThreshold() const; 111 114
Note: See TracChangeset
for help on using the changeset viewer.