HomeSort by relevance Sort by last modified time
    Searched defs:getAabb (Results 1 - 25 of 31) sorted by null

1 2

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btEmptyShape.cpp 33 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
34 void btEmptyShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
btBox2dShape.cpp 22 void btBox2dShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
btBoxShape.cpp 31 void btBoxShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
btSphereShape.cpp 55 void btSphereShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
btConvex2dShape.cpp 54 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
55 void btConvex2dShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
57 m_childConvexShape->getAabb(t,aabbMin,aabbMax);
btConvexInternalShape.cpp 93 void btConvexInternalAabbCachingShape::getAabb(const btTransform& trans,btVector3& aabbMin,btVector3& aabbMax) const
btTetrahedronShape.cpp 60 void btBU_Simplex1to4::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
63 btPolyhedralConvexAabbCachingShape::getAabb(t,aabbMin,aabbMax);
btHeightfieldTerrainShape.cpp 127 void btHeightfieldTerrainShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
btStaticPlaneShape.cpp 37 void btStaticPlaneShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
btUniformScalingShape.cpp 66 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
67 void btUniformScalingShape::getAabb(const btTransform& trans,btVector3& aabbMin,btVector3& aabbMax) const
btCapsuleShape.h 61 virtual void getAabb (const btTransform& t, btVector3& aabbMin, btVector3& aabbMax) const
btCylinderShape.cpp 45 void btCylinderShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
btScaledBvhTriangleMeshShape.cpp 77 void btScaledBvhTriangleMeshShape::getAabb(const btTransform& trans,btVector3& aabbMin,btVector3& aabbMax) const
btConvexInternalShape.h 87 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
88 void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
218 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btTriangleMeshShape.cpp 47 void btTriangleMeshShape::getAabb(const btTransform& trans,btVector3& aabbMin,btVector3& aabbMax) const
btTriangleShape.h 63 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax)const
btCompoundShape.cpp 66 shape->getAabb(localTransform,localAabbMin,localAabbMax);
98 m_children[childIndex].m_childShape->getAabb(newChildTransform,localAabbMin,localAabbMax);
157 m_children[j].m_childShape->getAabb(m_children[j].m_transform, localAabbMin, localAabbMax);
168 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
169 void btCompoundShape::getAabb(const btTransform& trans,btVector3& aabbMin,btVector3& aabbMax) const
199 getAabb(ident,aabbMin,aabbMax);
314 child.m_childShape->getAabb(child.m_transform,localAabbMin,localAabbMax);
btPolyhedralConvexShape.cpp 414 getAabb(ident,aabbMin,aabbMax);
445 void btPolyhedralConvexAabbCachingShape::getAabb(const btTransform& trans,btVector3& aabbMin,btVector3& aabbMax) const
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btTriangleShapeEx.h 133 This class implements a better getAabb method than the previous btTriangleShape class
151 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax)const
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btSimpleBroadphase.cpp 143 void btSimpleBroadphase::getAabb(btBroadphaseProxy* proxy,btVector3& aabbMin, btVector3& aabbMax ) const
btMultiSapBroadphase.cpp 152 void btMultiSapBroadphase::getAabb(btBroadphaseProxy* proxy,btVector3& aabbMin, btVector3& aabbMax ) const
btAxisSweep3.h 150 virtual void getAabb(btBroadphaseProxy* proxy,btVector3& aabbMin, btVector3& aabbMax ) const;
157 ///unQuantize should be conservative: aabbMin/aabbMax should be larger then 'getAabb' result
180 ///getAabb returns the axis aligned bounding box in the 'global' coordinate frame
318 void btAxisSweep3Internal<BP_FP_INT_TYPE>::getAabb(btBroadphaseProxy* proxy,btVector3& aabbMin, btVector3& aabbMax ) const
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btBroadphaseInterface.java 73 public void getAabb(btBroadphaseProxy proxy, Vector3 aabbMin, Vector3 aabbMax) {
btCollisionShape.java 151 public void getAabb(Matrix4 t, Vector3 aabbMin, Vector3 aabbMax) {
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Dynamics/
btRigidBody.cpp 127 void btRigidBody::getAabb(btVector3& aabbMin,btVector3& aabbMax) const
129 getCollisionShape()->getAabb(m_worldTransform,aabbMin,aabbMax);

Completed in 322 milliseconds

1 2