Add get methods for localAabbMin/localAabbMax, required for btScaledBvhTriangleMeshShape

This commit is contained in:
erwin.coumans 2008-09-07 05:00:55 +00:00
parent d836e83ea2
commit 6b365a7ca5

View File

@ -65,6 +65,16 @@ public:
return m_meshInterface;
}
const btVector3& getLocalAabbMin() const
{
return m_localAabbMin;
}
const btVector3& getLocalAabbMax() const
{
return m_localAabbMax;
}
//debugging
virtual const char* getName()const {return "TRIANGLEMESH";}