Lines Matching refs:thisRayI
1337 SkIntersections thisRayI, oppRayI; in linesIntersect() local
1342 if (!thisRayI.intersectRay(opp->fCurve, thisLine)) { in linesIntersect()
1349 if (thisRayI.used() > 1) { in linesIntersect()
1351 for (int tIndex = 0; tIndex < thisRayI.used(); ++tIndex) { in linesIntersect()
1353 ptMatches += thisRayI.pt(tIndex).approximatelyEqual(thisLine.fPts[lIndex]); in linesIntersect()
1380 for (int oIndex = 0; oIndex < thisRayI.used(); ++oIndex) { in linesIntersect()
1381 if (!roughly_between(oppSpan->fStartT, thisRayI[0][oIndex], oppSpan->fEndT)) { in linesIntersect()
1384 double distSq = thisRayI.pt(index).distanceSquared(oppRayI.pt(oIndex)); in linesIntersect()
1395 const SkDPoint& oppIPt = thisRayI.pt(oppCloseIndex); in linesIntersect()
1398 && between(oppSpan->fStartT, thisRayI[0][oppCloseIndex], oppSpan->fEndT) in linesIntersect()
1400 i->merge(oppRayI, closeIndex, thisRayI, oppCloseIndex); in linesIntersect()
1411 if (!thisRayI.intersectRay(opp->fCurve, thisLine)) { in linesIntersect()
1414 double start = thisRayI[0][oppCloseIndex]; in linesIntersect()