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

  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
Octree.java 154 float tMin = boundResults.getClosestCollision().getDistance();
157 tMin = Math.max(tMin, 0);
160 root.intersectWhere(r, geoms, tMin, tMax, results);
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp 120 static bool add_intercept(const SkDQuad& q1, const SkDQuad& q2, double tMin, double tMax,
122 double tMid = (tMin + tMax) / 2;
177 double tMin, tMax;
179 tMin = tMax = tsFound[0];
183 tMin = tsFound[0];
189 tMin = t2s;
198 if (tMin != tMax || tCount > 2) {
199 dxy2 = q2.dxdyAtT(tMin);
211 if (add_intercept(q1, q2, tMin, tMax, i, subDivide)) {
215 return is_linear_inner(q2, tMin, tMax, q1, t1s, t1e, i, subDivide)
    [all...]
  /external/skia/src/pathops/
SkDQuadIntersection.cpp 120 static bool add_intercept(const SkDQuad& q1, const SkDQuad& q2, double tMin, double tMax,
122 double tMid = (tMin + tMax) / 2;
177 double tMin, tMax;
179 tMin = tMax = tsFound[0];
183 tMin = tsFound[0];
189 tMin = t2s;
198 if (tMin != tMax || tCount > 2) {
199 dxy2 = q2.dxdyAtT(tMin);
211 if (add_intercept(q1, q2, tMin, tMax, i, subDivide)) {
215 return is_linear_inner(q2, tMin, tMax, q1, t1s, t1e, i, subDivide)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHNode.java 341 float tMin = data.min,
344 if (tMax < tMin) {
374 if (tMin > tNearSplit && tMax < tFarSplit) {
378 if (tMin > tNearSplit) {
379 tMin = max(tMin, tFarSplit);
385 stack.add(new BIHStackData(farNode, max(tMin, tFarSplit), tMax));
394 // stack.add(new BIHStackData(node, tMin, tMax));
BIHTree.java 404 float tMin = boundResults.getClosestCollision().getDistance();
409 } else if (tMin == tMax) {
410 tMin = 0;
413 if (tMin <= 0) {
414 tMin = 0;
419 if (tMin > tMax){
424 // return root.intersectBrute(r, worldMatrix, this, tMin, tMax, results);
425 return root.intersectWhere(r, worldMatrix, this, tMin, tMax, results);
  /prebuilts/devtools/tools/lib/
traceview.jar 

Completed in 267 milliseconds