Home
last modified time | relevance | path

Searched refs:minProj (Results 1 – 8 of 8) sorted by relevance

/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
DbtConvexHullShape.cpp209 void btConvexHullShape::project(const btTransform& trans, const btVector3& dir, btScalar& minProj, … in project() argument
212 minProj = FLT_MAX; in project()
221 if(dp < minProj) in project()
223 minProj = dp; in project()
237 minProj = witnesPtMin.dot(dir); in project()
241 if(minProj>maxProj) in project()
243 btSwap(minProj,maxProj); in project()
DbtConvexPolyhedron.cpp277 void btConvexPolyhedron::project(const btTransform& trans, const btVector3& dir, btScalar& minProj,… in project() argument
279 minProj = FLT_MAX; in project()
286 if(dp < minProj) in project()
288 minProj = dp; in project()
297 if(minProj>maxProj) in project()
299 btSwap(minProj,maxProj); in project()
DbtConvexPolyhedron.h59 …void project(const btTransform& trans, const btVector3& dir, btScalar& minProj, btScalar& maxProj,… in ATTRIBUTE_ALIGNED16()
DbtConvexShape.h56 …virtual void project(const btTransform& trans, const btVector3& dir, btScalar& minProj, btScalar& … in ATTRIBUTE_ALIGNED16()
DbtConvexHullShape.h76 …virtual void project(const btTransform& trans, const btVector3& dir, btScalar& minProj, btScalar& … in ATTRIBUTE_ALIGNED16()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
DbtMinkowskiPenetrationDepthSolver.cpp69 btScalar minProj = btScalar(BT_LARGE_FLOAT); in calcPenDepth() local
162 if (delta < minProj) in calcPenDepth()
164 minProj = delta; in calcPenDepth()
219 if (delta < minProj) in calcPenDepth()
221 minProj = delta; in calcPenDepth()
234 if (minProj < btScalar(0.)) in calcPenDepth()
238 minProj += extraSeparation+(convexA->getMarginNonVirtual() + convexB->getMarginNonVirtual()); in calcPenDepth()
253 debugDraw->drawLine(minA,minA+(minNorm*minProj),color); in calcPenDepth()
262 btScalar offsetDist = minProj; in calcPenDepth()
282 btScalar correctedMinNorm = minProj - res.m_depth; in calcPenDepth()
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
DbtConvexShape.java85 …public void project(Matrix4 trans, Vector3 dir, SWIGTYPE_p_float minProj, SWIGTYPE_p_float maxProj… in project() argument
86 …CollisionJNI.btConvexShape_project(swigCPtr, this, trans, dir, SWIGTYPE_p_float.getCPtr(minProj), … in project()
DbtConvexPolyhedron.java144 …public void project(Matrix4 trans, Vector3 dir, SWIGTYPE_p_float minProj, SWIGTYPE_p_float maxProj… in project() argument
145 …xPolyhedron_project(swigCPtr, this, trans, dir, SWIGTYPE_p_float.getCPtr(minProj), SWIGTYPE_p_floa… in project()