HomeSort by relevance Sort by last modified time
    Searched defs:aabbMax (Results 1 - 11 of 11) sorted by null

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btBox2dShape.cpp 22 void btBox2dShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
24 btTransformAabb(getHalfExtentsWithoutMargin(),getMargin(),t,aabbMin,aabbMax);
btBoxShape.cpp 31 void btBoxShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
33 btTransformAabb(getHalfExtentsWithoutMargin(),getMargin(),t,aabbMin,aabbMax);
btOptimizedBvh.cpp 58 btVector3 aabbMin,aabbMax;
60 aabbMax.setValue(btScalar(-BT_LARGE_FLOAT),btScalar(-BT_LARGE_FLOAT),btScalar(-BT_LARGE_FLOAT));
62 aabbMax.setMax(triangle[0]);
64 aabbMax.setMax(triangle[1]);
66 aabbMax.setMax(triangle[2]);
70 node.m_aabbMaxOrg = aabbMax;
106 btVector3 aabbMin,aabbMax;
108 aabbMax.setValue(btScalar(-BT_LARGE_FLOAT),btScalar(-BT_LARGE_FLOAT),btScalar(-BT_LARGE_FLOAT));
110 aabbMax.setMax(triangle[0]);
112 aabbMax.setMax(triangle[1])
    [all...]
btCollisionShape.cpp 36 btVector3 aabbMin,aabbMax;
38 getAabb(tr,aabbMin,aabbMax);
40 radius = (aabbMax-aabbMin).length()*btScalar(0.5);
41 center = (aabbMin+aabbMax)*btScalar(0.5);
btCylinderShape.cpp 45 void btCylinderShape::getAabb(const btTransform& t,btVector3& aabbMin,btVector3& aabbMax) const
47 btTransformAabb(getHalfExtentsWithoutMargin(),getMargin(),t,aabbMin,aabbMax);
btConeShape.h 51 btVector3 aabbMin,aabbMax;
52 getAabb(identity,aabbMin,aabbMax);
54 btVector3 halfExtents = (aabbMax-aabbMin)*btScalar(0.5);
btCompoundShape.cpp 64 //extend the local aabbMin/aabbMax
153 //extend the local aabbMin/aabbMax
169 void btCompoundShape::getAabb(const btTransform& trans,btVector3& aabbMin,btVector3& aabbMax) const
189 aabbMax = center+extent;
198 btVector3 aabbMin,aabbMax;
199 getAabb(ident,aabbMin,aabbMax);
201 btVector3 halfExtents = (aabbMax-aabbMin)*btScalar(0.5);
312 //extend the local aabbMin/aabbMax
btPolyhedralConvexShape.cpp 413 btVector3 aabbMin,aabbMax;
414 getAabb(ident,aabbMin,aabbMax);
415 btVector3 halfExtents = (aabbMax-aabbMin)*btScalar(0.5);
445 void btPolyhedralConvexAabbCachingShape::getAabb(const btTransform& trans,btVector3& aabbMin,btVector3& aabbMax) const
447 getNonvirtualAabb(trans,aabbMin,aabbMax,getMargin());
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btCompoundFromGimpact.h 86 btVector3 aabbMin,aabbMax;
87 gimpactMesh->getAabb(tr,aabbMin,aabbMax);
88 gimpactMesh->getMeshInterface()->InternalProcessAllTriangles(&cb,aabbMin,aabbMax);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btMultiSapBroadphase.cpp 96 btVector3 aabbMin,aabbMax;
97 m_sapBroadphases[i]->getBroadphaseAabb(aabbMin,aabbMax);
99 m_optimizedAabbTree->quantize(&node.m_quantizedAabbMax[0],aabbMax,1);
107 btBroadphaseProxy* btMultiSapBroadphase::createProxy( const btVector3& aabbMin, const btVector3& aabbMax,int shapeType,void* userPtr, short int collisionFilterGroup,short int collisionFilterMask, btDispatcher* dispatcher,void* /*ignoreMe*/)
112 btMultiSapProxy* proxy = new (mem)btMultiSapProxy(aabbMin, aabbMax,shapeType,userPtr, collisionFilterGroup,collisionFilterMask);
116 setAabb(proxy,aabbMin,aabbMax,dispatcher);
152 void btMultiSapBroadphase::getAabb(btBroadphaseProxy* proxy,btVector3& aabbMin, btVector3& aabbMax ) const
156 aabbMax = multiProxy->m_aabbMax;
159 void btMultiSapBroadphase::rayTest(const btVector3& rayFrom,const btVector3& rayTo, btBroadphaseRayCallback& rayCallback, const btVector3& aabbMin,const btVector3& aabbMax)
170 void btMultiSapBroadphase::setAabb(btBroadphaseProxy* proxy,const btVector3& aabbMin,const btVector3& aabbMax, btDispatcher* dispatcher
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btInternalEdgeUtility.cpp 340 btVector3 aabbMin,aabbMax;
365 aabbMax.setValue(btScalar(-BT_LARGE_FLOAT),btScalar(-BT_LARGE_FLOAT),btScalar(-BT_LARGE_FLOAT));
367 aabbMax.setMax(triangleVerts[0]);
369 aabbMax.setMax(triangleVerts[1]);
371 aabbMax.setMax(triangleVerts[2]);
379 trimeshShape->processAllTriangles(&connectivityProcessor,aabbMin,aabbMax);

Completed in 257 milliseconds