HomeSort by relevance Sort by last modified time
    Searched refs:m_fraction (Results 1 - 10 of 10) sorted by null

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btConvex2dConvex2dAlgorithm.cpp 196 //store result.m_fraction in both bodies
198 if (col0->getHitFraction()> result.m_fraction)
199 col0->setHitFraction( result.m_fraction );
201 if (col1->getHitFraction() > result.m_fraction)
202 col1->setHitFraction( result.m_fraction);
204 if (resultFraction > result.m_fraction)
205 resultFraction = result.m_fraction;
229 //store result.m_fraction in both bodies
231 if (col0->getHitFraction() > result.m_fraction)
232 col0->setHitFraction( result.m_fraction);
    [all...]
btConvexConvexAlgorithm.cpp 733 //store result.m_fraction in both bodies
735 if (col0->getHitFraction()> result.m_fraction)
736 col0->setHitFraction( result.m_fraction );
738 if (col1->getHitFraction() > result.m_fraction)
739 col1->setHitFraction( result.m_fraction);
741 if (resultFraction > result.m_fraction)
742 resultFraction = result.m_fraction;
766 //store result.m_fraction in both bodies
768 if (col0->getHitFraction() > result.m_fraction)
769 col0->setHitFraction( result.m_fraction);
    [all...]
btConvexConcaveCollisionAlgorithm.cpp 274 castResult.m_fraction = m_hitFraction;
286 if (m_hitFraction > castResult.m_fraction)
287 m_hitFraction = castResult.m_fraction;
btCollisionWorld.cpp 286 castResult.m_fraction = resultCallback.m_closestHitFraction;
310 if (castResult.m_fraction < resultCallback.m_closestHitFraction)
324 castResult.m_fraction
594 castResult.m_fraction = resultCallback.m_closestHitFraction;//btScalar(1.);//??
613 if (castResult.m_fraction < resultCallback.m_closestHitFraction)
622 castResult.m_fraction
698 castResult.m_fraction = resultCallback.m_closestHitFraction;
708 if (castResult.m_fraction < resultCallback.m_closestHitFraction)
717 castResult.m_fraction
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
btConvexCast.h 44 :m_fraction(btScalar(BT_LARGE_FLOAT)),
57 btScalar m_fraction; //input and output member in struct:btConvexCast::CastResult
btRaycastCallback.cpp 152 castResult.m_fraction = btScalar(1.);
159 if (castResult.m_fraction < m_hitFraction)
172 castResult.m_fraction,
btGjkConvexCast.cpp 144 result.m_fraction = lastLambda;
166 result.m_fraction = lambda;
btSubSimplexConvexCast.cpp 142 result.m_fraction = lambda;
btContinuousConvexCollision.cpp 233 result.m_fraction = lambda;
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBodyConcaveCollisionAlgorithm.cpp 297 castResult.m_fraction = m_hitFraction;
309 if (m_hitFraction > castResult.m_fraction)
310 m_hitFraction = castResult.m_fraction;

Completed in 93 milliseconds