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

  /external/jmonkeyengine/engine/src/core/com/jme3/math/
LineSegment.java 425 float fDet = FastMath.abs(1.0f - fA01 * fA01);
428 if (fDet >= FastMath.FLT_EPSILON) {
432 fExtDet = extent * fDet;
439 float fInvDet = ((float) 1.0) / fDet;
Matrix4f.java     [all...]
Matrix3f.java 1057 float fDet = m00 * fCo00 + m01 * fCo10 + m02 * fCo20;
1058 return fDet;
    [all...]

Completed in 57 milliseconds