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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatPoint.h 119 float lengthSquared() const
FloatPoint3D.h 121 float lengthSquared() const { return this->dot(*this); }
122 float length() const { return sqrtf(lengthSquared()); }
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsPoint.h 56 return sqrt(lengthSquared());
59 double lengthSquared() const {
145 return temp.lengthSquared();
  /external/skia/src/pathops/
SkPathOpsPoint.h 56 return sqrt(lengthSquared());
59 double lengthSquared() const {
145 return temp.lengthSquared();
  /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/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 319 milliseconds