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

  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
Octree.java 155 float tMax = boundResults.getFarthestCollision().getDistance();
158 tMax = Math.min(tMax, farPlane);
160 root.intersectWhere(r, geoms, tMin, tMax, results);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ContinuousOutputModel.java 264 double tMax = 0.5 * (sMax.getPreviousTime() + sMax.getCurrentTime());
287 tMax = 0.5 * (si.getPreviousTime() + si.getCurrentTime());
302 if ((FastMath.abs(tMed - tMin) < 1e-6) || (FastMath.abs(tMax - tMed) < 1e-6)) {
309 final double d12 = tMax - tMed;
311 final double d13 = tMax - tMin;
312 final double dt1 = time - tMax;
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHNode.java 342 tMax = data.max;
344 if (tMax < tMin) {
374 if (tMin > tNearSplit && tMax < tFarSplit) {
381 } else if (tMax < tFarSplit) {
382 tMax = min(tMax, tNearSplit);
385 stack.add(new BIHStackData(farNode, max(tMin, tFarSplit), tMax));
386 tMax = min(tMax, tNearSplit);
394 // stack.add(new BIHStackData(node, tMin, tMax));
    [all...]
BIHTree.java 405 float tMax = boundResults.getFarthestCollision().getDistance();
407 if (tMax <= 0) {
408 tMax = Float.POSITIVE_INFINITY;
409 } else if (tMin == tMax) {
418 tMax = Math.min(tMax, r.getLimit());
419 if (tMin > tMax){
424 // return root.intersectBrute(r, worldMatrix, this, tMin, tMax, results);
425 return root.intersectWhere(r, worldMatrix, this, tMin, tMax, results);
  /external/deqp/modules/glshared/
glsRasterizationTestUtil.cpp 428 const float tMax = getMaxValueWithinError(maximalRangeDivision(dividendMin, dividendMax, divisorMin, divisorMax), divError);
430 DE_ASSERT(tMin <= tMax);
432 const float perspectiveTMax = getMaxValueWithinError(maximalRangeDivision(tMin, tMax, wb, wb), divError);
433 const float perspectiveTMin = getMinValueWithinError(minimalRangeDivision(tMin, tMax, wb, wb), divError);
436 const float perspectiveInvTMax = getMaxValueWithinError(maximalRangeDivision((1.0f - tMax), (1.0f - tMin), wa, wa), divError);
437 const float perspectiveInvTMin = getMinValueWithinError(minimalRangeDivision((1.0f - tMax), (1.0f - tMin), wa, wa), divError);
486 const float tMax = getMaxValueWithinError(maximalRangeDivision(dividendMin, dividendMax, divisorMin, divisorMax), divError);
488 DE_ASSERT(tMin <= tMax);
490 const float perspectiveTMax = getMaxValueWithinError(maximalRangeDivision(tMin, tMax, wb, wb), divError);
491 const float perspectiveTMin = getMinValueWithinError(minimalRangeDivision(tMin, tMax, wb, wb), divError)
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 

Completed in 82 milliseconds