Lines Matching refs:thisPerp
1045 SkDLine thisPerp;
1046 thisPerp.fPts[0].fX = thisLine.fPts[1].fX + (thisLine.fPts[1].fY - thisLine.fPts[0].fY);
1047 thisPerp.fPts[0].fY = thisLine.fPts[1].fY + (thisLine.fPts[0].fX - thisLine.fPts[1].fX);
1048 thisPerp.fPts[1] = thisLine.fPts[1];
1050 perpRayI.intersectRay(opp, thisPerp);
1052 finds += perpRayI.pt(pIndex).approximatelyEqual(thisPerp.fPts[1]);
1054 thisPerp.fPts[1].fX = thisLine.fPts[0].fX + (thisLine.fPts[1].fY - thisLine.fPts[0].fY);
1055 thisPerp.fPts[1].fY = thisLine.fPts[0].fY + (thisLine.fPts[0].fX - thisLine.fPts[1].fX);
1056 thisPerp.fPts[0] = thisLine.fPts[0];
1057 perpRayI.intersectRay(opp, thisPerp);
1059 finds += perpRayI.pt(pIndex).approximatelyEqual(thisPerp.fPts[0]);