Lines Matching defs:tmin
109 /** Splits this curve into the subinterval [tmin,tmax]. */
110 void split(float tmin, float tmax, ScalarBezCurve* result) const {
112 const float tRel = tmin / tmax;
288 float tmin,
300 result->push_back((tmin + tmax) * 0.5);
306 } else if (SkScalarNearlyZero(tmax - tmin)) {
312 const float tmid = (tmin + tmax) * 0.5;
313 ZeroSetRec(left, tmin, tmid, tol, result);
563 const float tmin = lenTraveled;
568 fVarWidth.split(tmin, tmax, &partVarWidth);
569 fVarWidthInner.split(tmin, tmax, &partVarWidthInner);
594 const float innerRadius = varWidthInner.eval(tmin);
595 const float outerRadius = varWidth.eval(tmin);
1261 const float tmin = i * dt, tmax = (i + 1) * dt;
1264 const float tRel = tmin / tmax;