Searched refs:velocitySquared (Results 1 – 1 of 1) sorted by relevance
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
D | SweepSphere.java | 145 float velocitySquared, Vector3f vertex, float t) { in collideWithVertex() argument 151 float a = velocitySquared; in collideWithVertex() 169 float velocitySquared, in collideWithSegment() argument 183 float a = (edgeSquared * -velocitySquared) + EdotV * EdotV; in collideWithSegment() 289 float velocitySquared = sVelocity.lengthSquared(); in collideWithTriangle() local 297 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v1, minT); in collideWithTriangle() 305 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v2, minT); in collideWithTriangle() 313 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v3, minT); in collideWithTriangle() 321 newT = collideWithSegment(sCenter, sVelocity, velocitySquared, v1, v2, minT, contactPoint); in collideWithTriangle() 328 newT = collideWithSegment(sCenter, sVelocity, velocitySquared, v2, v3, minT, contactPoint); in collideWithTriangle() [all …]
|