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

  /cts/apps/CtsVerifier/include/colorchecker/
vec2.h 53 float squareDistance(const Vec2<U> &param) const {
vec3.h 80 float squareDistance(const Vec3<U> &param) const {
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
LineSegment.java 146 float s0, s1, squareDistance, extentDeterminant0, extentDeterminant1, tempS0, tempS1;
165 squareDistance = s0
176 squareDistance = s0 * (s0 - (2.0f) * tempS0)
181 squareDistance = -s0 * s0 + s1
186 squareDistance = s0 * (s0 - (2.0f) * tempS0)
197 squareDistance = s0 * (s0 - (2.0f) * tempS0) + s1
202 squareDistance = -s0 * s0 + s1
207 squareDistance = s0 * (s0 - (2.0f) * tempS0) + s1
220 squareDistance = s1 * (s1 - (2.0f) * tempS1)
225 squareDistance = -s1 * s1 + s0
    [all...]

Completed in 473 milliseconds