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

  /external/skia/legacy/src/utils/
SkCubicInterval.cpp 17 SkScalar minT = 0;
22 t = SkScalarAve(minT, maxT);
29 minT = t;
  /external/skia/src/utils/
SkCubicInterval.cpp 17 SkScalar minT = 0;
22 t = SkScalarAve(minT, maxT);
29 minT = t;
  /external/webkit/Source/WebCore/page/animation/
CompositeAnimation.cpp 353 double minT = -1;
360 if (t < minT || minT == -1)
361 minT = t;
362 if (minT == 0)
372 if (t < minT || minT == -1)
373 minT = t;
374 if (minT == 0)
379 return minT;
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java 254 float minT = 1f;
271 minT = t0;
284 result.setDistance(minT * velocity.length());
297 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v1, minT);
299 minT = newT;
305 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v2, minT);
307 minT = newT;
313 newT = collideWithVertex(sCenter, sVelocity, velocitySquared, v3, minT);
315 minT = newT;
321 newT = collideWithSegment(sCenter, sVelocity, velocitySquared, v1, v2, minT, contactPoint)
    [all...]

Completed in 151 milliseconds