Changeset 2430 for code/branches/physics/src/bullet/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.h
- Timestamp:
- Dec 13, 2008, 11:45:51 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/physics/src/bullet/BulletCollision/NarrowPhaseCollision/btGjkPairDetector.h
r2192 r2430 21 21 22 22 #include "btDiscreteCollisionDetectorInterface.h" 23 #include "LinearMath/btPoint3.h"24 23 #include "BulletCollision/CollisionShapes/btCollisionMargin.h" 25 24 … … 39 38 const btConvexShape* m_minkowskiB; 40 39 bool m_ignoreMargin; 40 btScalar m_cachedSeparatingDistance; 41 41 42 42 … … 69 69 } 70 70 71 const btVector3& getCachedSeparatingAxis() const 72 { 73 return m_cachedSeparatingAxis; 74 } 75 btScalar getCachedSeparatingDistance() const 76 { 77 return m_cachedSeparatingDistance; 78 } 79 71 80 void setPenetrationDepthSolver(btConvexPenetrationDepthSolver* penetrationDepthSolver) 72 81 {
Note: See TracChangeset
for help on using the changeset viewer.