Changeset 2908 for code/branches/questsystem5/src/bullet/BulletCollision/NarrowPhaseCollision/btPersistentManifold.h
- 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/NarrowPhaseCollision/btPersistentManifold.h
r2907 r2908 56 56 57 57 btScalar m_contactBreakingThreshold; 58 btScalar m_contactProcessingThreshold;59 58 60 59 … … 72 71 btPersistentManifold(); 73 72 74 btPersistentManifold(void* body0,void* body1,int , btScalar contactBreakingThreshold ,btScalar contactProcessingThreshold)73 btPersistentManifold(void* body0,void* body1,int , btScalar contactBreakingThreshold) 75 74 : m_body0(body0),m_body1(body1),m_cachedPoints(0), 76 m_contactBreakingThreshold(contactBreakingThreshold), 77 m_contactProcessingThreshold(contactProcessingThreshold) 75 m_contactBreakingThreshold(contactBreakingThreshold) 78 76 { 79 77 … … 114 112 ///@todo: get this margin from the current physics / collision environment 115 113 btScalar getContactBreakingThreshold() const; 116 117 btScalar getContactProcessingThreshold() const118 {119 return m_contactProcessingThreshold;120 }121 114 122 115 int getCacheEntry(const btManifoldPoint& newPoint) const;
Note: See TracChangeset
for help on using the changeset viewer.