Lines Matching refs:fT
17 bool startMatch = fT[0][0] == 0 || zero_or_one(fT[1][0]);
18 bool endMatch = fT[0][1] == 1 || zero_or_one(fT[1][1]);
19 if ((!startMatch && !endMatch) || approximately_equal(fT[0][0], fT[0][1])) {
21 if (startMatch && endMatch && (fT[0][0] != 0 || !zero_or_one(fT[1][0]))
22 && fT[0][1] == 1 && zero_or_one(fT[1][1])) {
35 fPt[0] = line.ptAtT(fT[0][0]);
37 fPt[1] = line.ptAtT(fT[0][1]);
59 fT[0][0] = numerA;
60 fT[1][0] = numerB;
73 fT[0][0] = fT[1][0] = 0;
74 fT[1][0] = fT[1][1] = 1;
122 fT[0][0] = numerA / denom;
123 fT[1][0] = numerB / denom;
226 fT[0][0] = HorizontalIntercept(line, y);
227 double xIntercept = line[0].fX + fT[0][0] * (line[1].fX - line[0].fX);
229 fT[1][0] = (xIntercept - left) / (right - left);
233 fT[1][index] = 1 - fT[1][index];
304 fT[0][0] = VerticalIntercept(line, x);
305 double yIntercept = line[0].fY + fT[0][0] * (line[1].fY - line[0].fY);
307 fT[1][0] = (yIntercept - top) / (bottom - top);
311 fT[1][index] = 1 - fT[1][index];