HomeSort by relevance Sort by last modified time
    Searched defs:lengthSquared (Results 1 - 8 of 8) sorted by null

  /frameworks/base/libs/hwui/
Vector.h 35 float lengthSquared() const {
  /external/deqp/framework/common/
tcuVectorUtil.hpp 142 inline T lengthSquared (const Vector<T, Size>& a)
153 return ::sqrt(lengthSquared(a));
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 289 return FastMath.sqrt(lengthSquared());
293 * <code>lengthSquared</code> calculates the squared value of the
298 public float lengthSquared() {
Vector3f.java 388 float d = other.lengthSquared(); // |B|^2
410 return FastMath.sqrt(lengthSquared());
414 * <code>lengthSquared</code> calculates the squared value of the
419 public float lengthSquared() {
    [all...]
Vector4f.java 320 float d = other.lengthSquared(); // |B|^2
342 return FastMath.sqrt(lengthSquared());
346 * <code>lengthSquared</code> calculates the squared value of the
351 public float lengthSquared() {
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
BillboardControl.java 224 float lengthSquared = left.x * left.x + left.z * left.z;
225 if (lengthSquared < FastMath.FLT_EPSILON) {
231 float invLength = FastMath.invSqrt(lengthSquared);
  /external/skia/src/pathops/
SkPathOpsPoint.h 72 return sqrt(lengthSquared());
75 double lengthSquared() const {
187 return temp.lengthSquared();
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingSphere.java 286 Vector3f o = a.cross(b).multLocal(c.lengthSquared()).addLocal(
287 c.cross(a).multLocal(b.lengthSquared())).addLocal(
288 b.cross(c).multLocal(a.lengthSquared())).divideLocal(
320 Vector3f o = acrossB.cross(a).multLocal(b.lengthSquared()).addLocal(b.cross(acrossB).multLocal(a.lengthSquared())).divideLocal(Denominator);
364 float radiusSqr = diff.lengthSquared();
583 float lengthSquared = diff.lengthSquared();
588 if (fRDiffSqr >= lengthSquared) {
604 float length = (float) Math.sqrt(lengthSquared);
    [all...]

Completed in 102 milliseconds