Home | History | Annotate | Download | only in pathops

Lines Matching refs:fT

15         bool startMatch = fT[0][0] == 0 || zero_or_one(fT[1][0]);
16 bool endMatch = fT[0][1] == 1 || zero_or_one(fT[1][1]);
17 if ((!startMatch && !endMatch) || approximately_equal(fT[0][0], fT[0][1])) {
19 if (startMatch && endMatch && (fT[0][0] != 0 || !zero_or_one(fT[1][0]))
20 && fT[0][1] == 1 && zero_or_one(fT[1][1])) {
33 fPt[0] = line.ptAtT(fT[0][0]);
35 fPt[1] = line.ptAtT(fT[0][1]);
57 fT[0][0] = numerA;
58 fT[1][0] = numerB;
71 fT[0][0] = fT[1][0] = 0;
72 fT[1][0] = fT[1][1] = 1;
120 fT[0][0] = numerA / denom;
121 fT[1][0] = numerB / denom;
222 fT[0][0] = HorizontalIntercept(line, y);
223 double xIntercept = line[0].fX + fT[0][0] * (line[1].fX - line[0].fX);
225 fT[1][0] = (xIntercept - left) / (right - left);
229 fT[1][index] = 1 - fT[1][index];
298 fT[0][0] = VerticalIntercept(line, x);
299 double yIntercept = line[0].fY + fT[0][0] * (line[1].fY - line[0].fY);
301 fT[1][0] = (yIntercept - top) / (bottom - top);
305 fT[1][index] = 1 - fT[1][index];