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

1 2 3

  /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
btEmptyShape.h 41 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
42 void 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);
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
btConvex2dShape.h 64 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
65 void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btSphereShape.h 44 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btTetrahedronShape.h 48 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btTriangleMeshShape.h 50 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btUniformScalingShape.h 71 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
72 void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btCollisionShape.cpp 38 getAabb(tr,aabbMin,aabbMax);
63 getAabb(curTrans,temporalAabbMin,temporalAabbMax);
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;
btTetrahedronShape.cpp 60 void btBU_Simplex1to4::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
63 btPolyhedralConvexAabbCachingShape::getAabb(t,aabbMin,aabbMax);
btConvexShape.h 62 ///getAabb's default implementation is brute force, expected derived classes to implement a fast dedicated version
63 void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const =0;
btHeightfieldTerrainShape.h 152 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btPolyhedralConvexShape.h 110 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btScaledBvhTriangleMeshShape.h 42 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const;
btSphereShape.cpp 55 void btSphereShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
btStaticPlaneShape.h 41 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);
btCollisionShape.h 46 ///getAabb returns the axis aligned bounding box in the coordinate frame of the given transform t.
47 virtual void getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const =0;
btStaticPlaneShape.cpp 37 void btStaticPlaneShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btBroadphaseInterface.h 59 virtual void getAabb(btBroadphaseProxy* proxy,btVector3& aabbMin, btVector3& aabbMax ) const =0;
71 ///getAabb returns the axis aligned bounding box in the 'global' coordinate frame
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btCompoundCollisionAlgorithm.cpp 132 childShape->getAabb(newChildWorldTrans,aabbMin0,aabbMax0);
133 m_otherObjWrap->getCollisionShape()->getAabb(m_otherObjWrap->getWorldTransform(),aabbMin1,aabbMax1);
273 otherObjWrap->getCollisionShape()->getAabb(otherInCompoundSpace,localAabbMin,localAabbMax);
313 childShape->getAabb(newChildWorldTrans,aabbMin0,aabbMax0);
314 otherObjWrap->getCollisionShape()->getAabb(otherObjWrap->getWorldTransform(),aabbMin1,aabbMax1);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btCompoundFromGimpact.h 87 gimpactMesh->getAabb(tr,aabbMin,aabbMax);

Completed in 660 milliseconds

1 2 3