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

  /external/eigen/Eigen/src/Eigen2Support/Geometry/
ParametrizedLine.h 71 RealScalar squaredDistance(const VectorType& p) const
77 * \sa squaredDistance()
79 RealScalar distance(const VectorType& p) const { return ei_sqrt(squaredDistance(p)); }
  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 82 RealScalar squaredDistance(const VectorType& p) const
88 * \sa squaredDistance()
90 RealScalar distance(const VectorType& p) const { using std::sqrt; return sqrt(squaredDistance(p)); }
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
vec2.js 252 vec2.squaredDistance = function(a, b) {
259 * Alias for {@link vec2.squaredDistance}
262 vec2.sqrDist = vec2.squaredDistance;
vec4.js 284 vec4.squaredDistance = function(a, b) {
293 * Alias for {@link vec4.squaredDistance}
296 vec4.sqrDist = vec4.squaredDistance;
vec3.js 268 vec3.squaredDistance = function(a, b) {
276 * Alias for {@link vec3.squaredDistance}
279 vec3.sqrDist = vec3.squaredDistance;
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
btComputeGjkEpaPenetration.h 94 btScalar squaredDistance = BT_LARGE_FLOAT;
122 if ((delta > btScalar(0.0)) && (delta * delta > squaredDistance * colDesc.m_maximumDistanceSquared))
138 btScalar f0 = squaredDistance - delta;
139 btScalar f1 = squaredDistance * colDesc.m_gjkRelError2;
174 btScalar previousSquaredDistance = squaredDistance;
175 squaredDistance = newCachedSeparatingAxis.length2();
178 if (squaredDistance>previousSquaredDistance)
181 squaredDistance = previousSquaredDistance;
191 if (previousSquaredDistance - squaredDistance <= SIMD_EPSILON * previousSquaredDistance)
208 printf("sepAxis=(%f,%f,%f), squaredDistance = %f\n"
    [all...]
btGjkPairDetector.cpp 124 btScalar squaredDistance = BT_LARGE_FLOAT;
158 if ((delta > btScalar(0.0)) && (delta * delta > squaredDistance * input.m_maximumDistanceSquared))
174 btScalar f0 = squaredDistance - delta;
175 btScalar f1 = squaredDistance * REL_ERROR2;
210 btScalar previousSquaredDistance = squaredDistance;
211 squaredDistance = newCachedSeparatingAxis.length2();
214 if (squaredDistance>previousSquaredDistance)
217 squaredDistance = previousSquaredDistance;
227 if (previousSquaredDistance - squaredDistance <= SIMD_EPSILON * previousSquaredDistance)
244 printf("sepAxis=(%f,%f,%f), squaredDistance = %f, shapeTypeA=%i,shapeTypeB=%i\n",
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 408 float squaredDistance = 0;
412 squaredDistance += difference * difference;
414 return squaredDistance / size;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state_utils.cpp 180 const float squaredDistance = calculateSquaredDistanceFromSweetSpotCenter(proximityInfo,
184 return squaredDistance / squaredRadius;
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 2642 milliseconds