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

  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsPoint.h 56 return sqrt(lengthSquared());
59 double lengthSquared() const {
145 return temp.lengthSquared();
SkOpAngle.cpp 214 double dist = dxy.lengthSquared();
229 double dist = dxy.lengthSquared();
  /external/skia/src/pathops/
SkPathOpsPoint.h 56 return sqrt(lengthSquared());
59 double lengthSquared() const {
145 return temp.lengthSquared();
SkOpAngle.cpp 214 double dist = dxy.lengthSquared();
229 double dist = dxy.lengthSquared();
  /external/skia/tests/
PathOpsDVectorTest.cpp 43 double lenSq = v1.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...]
  /external/chromium_org/third_party/skia/src/core/
SkPoint.cpp 98 // *lengthSquared. Returns true if the distance is judged to be "nearly zero".
104 float *lengthSquared) {
105 *lengthSquared = getLengthSquared(dx, dy);
106 return *lengthSquared <= (SK_ScalarNearlyZero * SK_ScalarNearlyZero);
194 // *lengthSquared. Returns true if the distance is judged to be "nearly zero".
200 Sk64 *lengthSquared) {
202 getLengthSquared(dx, dy, lengthSquared);
211 return *lengthSquared <= tolSqr;
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java 153 float c = temp1.negateLocal().lengthSquared() - 1f;
158 // float C = vertex.subtract(sCenter).lengthSquared() - 1f;
177 float edgeSquared = edge.lengthSquared();
178 float baseSquared = base.lengthSquared();
289 float velocitySquared = sVelocity.lengthSquared();
367 float a = temp1.lengthSquared();
369 float c = temp2.lengthSquared() - temp3.getX() * temp3.getX();
  /external/skia/src/core/
SkPoint.cpp 98 // *lengthSquared. Returns true if the distance is judged to be "nearly zero".
104 float *lengthSquared) {
105 *lengthSquared = getLengthSquared(dx, dy);
106 return *lengthSquared <= (SK_ScalarNearlyZero * SK_ScalarNearlyZero);
194 // *lengthSquared. Returns true if the distance is judged to be "nearly zero".
200 Sk64 *lengthSquared) {
202 getLengthSquared(dx, dy, lengthSquared);
211 return *lengthSquared <= tolSqr;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FloatPoint3D.h 121 float lengthSquared() const { return this->dot(*this); }
122 float length() const { return sqrtf(lengthSquared()); }
FloatPoint.cpp 68 return sqrtf(lengthSquared());
FloatPoint.h 119 float lengthSquared() const
  /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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGPath.cpp 119 if (radiusVector.lengthSquared() < strokeWidth * strokeWidth * .25f)
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ring.java 194 if (b1.lengthSquared() < FastMath.FLT_EPSILON) {
Vector2f.java 289 return FastMath.sqrt(lengthSquared());
293 * <code>lengthSquared</code> calculates the squared value of the
298 public float lengthSquared() {
LineSegment.java 129 float len = compVec1.lengthSquared();
142 float lengthOfDiff = compVec1.lengthSquared();
424 float fC = kDiff.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() {
Line.java 121 float len = compVec1.lengthSquared();
Ray.java 420 float len = tempVa.lengthSquared();
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
TangentBinormalGenerator.java 305 return (a.subtract(b).cross(c.subtract(b))).lengthSquared() == 0;

Completed in 748 milliseconds