Searched refs:RADIUS_EPSILON (Results 1 - 1 of 1) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java65 private static final float RADIUS_EPSILON = 1f + 0.00001f; field in class:BoundingSphere
223 this.radius = 1f - RADIUS_EPSILON;
248 if (tempA.distanceSquared(center) - (radius * radius) > RADIUS_EPSILON - 1f) {
291 radius = o.length() * RADIUS_EPSILON;
321 radius = o.length() * RADIUS_EPSILON;
338 * (A.y - O.y) + (A.z - O.z) * (A.z - O.z)) / 4f) + RADIUS_EPSILON - 1f;
370 radius = (float) Math.sqrt(maxRadiusSqr) + RADIUS_EPSILON - 1f;
396 sphere.radius = FastMath.abs(getMaxAxis(trans.getScale()) * radius) + RADIUS_EPSILON - 1f;
412 sphere.radius = FastMath.abs(ax * radius) + RADIUS_EPSILON - 1f;
610 if (length > RADIUS_EPSILON) {
[all...]

Completed in 65 milliseconds