OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lengthSquared
(Results
1 - 22
of
22
) sorted by null
/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/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/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint3D.h
121
float
lengthSquared
() const { return this->dot(*this); }
122
float length() const { return sqrtf(
lengthSquared
()); }
FloatPoint.cpp
72
return sqrtf(
lengthSquared
());
FloatPoint.h
120
float
lengthSquared
() const
/external/chromium_org/third_party/skia/src/core/
SkPoint.cpp
96
// *
lengthSquared
. Returns true if the distance is judged to be "nearly zero".
102
float *
lengthSquared
) {
103
*
lengthSquared
= getLengthSquared(dx, dy);
104
return *
lengthSquared
<= (SK_ScalarNearlyZero * SK_ScalarNearlyZero);
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsPoint.h
56
return sqrt(
lengthSquared
());
59
double
lengthSquared
() const {
169
return temp.
lengthSquared
();
SkOpAngle.cpp
226
double dist = dxy.
lengthSquared
();
241
double dist = dxy.
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/core/
SkPoint.cpp
96
// *
lengthSquared
. Returns true if the distance is judged to be "nearly zero".
102
float *
lengthSquared
) {
103
*
lengthSquared
= getLengthSquared(dx, dy);
104
return *
lengthSquared
<= (SK_ScalarNearlyZero * SK_ScalarNearlyZero);
/external/skia/src/pathops/
SkPathOpsPoint.h
56
return sqrt(
lengthSquared
());
59
double
lengthSquared
() const {
169
return temp.
lengthSquared
();
SkOpAngle.cpp
226
double dist = dxy.
lengthSquared
();
241
double dist = dxy.
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 607 milliseconds