Home | History | Annotate | Download | only in Intersection

Lines Matching refs:nextT

1053                 double nextT = intercepts.fTs[tIndex];
1055 ? QuadYAtT(pts, nextT) : CubicYAtT(pts, nextT);
1580 fTBelow = nextT();
1775 double nextT() const {
2486 double nextT;
2489 nextT = activePtr->nextT();
2491 // !currentT && currentT != 1 || !nextT && nextT != 1
2492 if (currentT * nextT != 0 || currentT + nextT != 1) {
2497 LineSubDivide(points, currentT, nextT, clippedPts);
2500 QuadSubDivide(points, currentT, nextT, clippedPts);
2503 CubicSubDivide(points, currentT, nextT, clippedPts);
2523 currentT, nextT);
2537 currentT, nextT);
2550 activePtr->fTBelow = nextT;
2552 currentT = nextT;