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

  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Eigen3f.java 211 invLength = FastMath.invSqrt(p00 * p00 + p01 * p01);
217 invLength = FastMath.invSqrt(p11 * p11 + p01 * p01);
250 invLength = FastMath.invSqrt(p00 * p00 + p01 * p01);
255 invLength = FastMath.invSqrt(p11 * p11 + p01 * p01);
Vector3f.java 886 fInvLength = FastMath.invSqrt(w.x * w.x + w.z * w.z);
895 fInvLength = FastMath.invSqrt(w.y * w.y + w.z * w.z);
    [all...]
Quaternion.java 508 norm = FastMath.invSqrt(norm);
    [all...]
FastMath.java 584 public static float invSqrt(float fValue) {
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java     [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
BillboardControl.java 231 float invLength = FastMath.invSqrt(lengthSquared);

Completed in 256 milliseconds