Searched refs:invSqrt (Results 1 - 6 of 6) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DEigen3f.java211 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);
H A DVector3f.java886 fInvLength = FastMath.invSqrt(w.x * w.x + w.z * w.z);
895 fInvLength = FastMath.invSqrt(w.y * w.y + w.z * w.z);
H A DQuaternion.java508 norm = FastMath.invSqrt(norm);
1090 float n = FastMath.invSqrt(norm());
1101 float n = FastMath.invSqrt(norm());
H A DFastMath.java584 public static float invSqrt(float fValue) { method in class:FastMath
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DCamera.java1171 float inverseLength = FastMath.invSqrt(nearSquared + leftSquared);
1175 inverseLength = FastMath.invSqrt(nearSquared + rightSquared);
1179 inverseLength = FastMath.invSqrt(nearSquared + bottomSquared);
1183 inverseLength = FastMath.invSqrt(nearSquared + topSquared);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DBillboardControl.java231 float invLength = FastMath.invSqrt(lengthSquared);

Completed in 550 milliseconds