Got btMultiSapBroadphase in a working state. Now tuning/optimizations can be started.

Added getBroadphaseAabb to btBroadphaseInterface.
This commit is contained in:
erwin.coumans
2008-03-15 08:59:26 +00:00
parent 2478591e13
commit 44186898af
5 changed files with 316 additions and 50 deletions

View File

@@ -41,6 +41,10 @@ public:
virtual btOverlappingPairCache* getOverlappingPairCache()=0;
virtual const btOverlappingPairCache* getOverlappingPairCache() const =0;
///getAabb returns the axis aligned bounding box in the 'global' coordinate frame
///will add some transform later
virtual void getBroadphaseAabb(btVector3& aabbMin,btVector3& aabbMax) const =0;
};
#endif //BROADPHASE_INTERFACE_H