Home | History | Annotate | Download | only in pathops

Lines Matching refs:fQuad

98         : fQuad(q)
128 r[n] = (fQuad[n].fY - fLine[0].fY) * adj - (fQuad[n].fX - fLine[0].fX) * opp;
157 double D = fQuad[2].fY; // f
158 double E = fQuad[1].fY; // e
159 double F = fQuad[0].fY; // d
172 SkDPoint pt = fQuad.ptAtT(quadT);
188 double D = fQuad[2].fX; // f
189 double E = fQuad[1].fX; // e
190 double F = fQuad[0].fX; // d
203 SkDPoint pt = fQuad.ptAtT(quadT);
222 double lineT = fLine.exactPoint(fQuad[qIndex]);
227 fIntersections->insert(quadT, lineT, fQuad[qIndex]);
237 double lineT = fLine.nearPoint(fQuad[qIndex]);
241 fIntersections->insert(quadT, lineT, fQuad[qIndex]);
248 double lineT = SkDLine::ExactPointH(fQuad[qIndex], left, right, y);
253 fIntersections->insert(quadT, lineT, fQuad[qIndex]);
263 double lineT = SkDLine::NearPointH(fQuad[qIndex], left, right, y);
267 fIntersections->insert(quadT, lineT, fQuad[qIndex]);
274 double lineT = SkDLine::ExactPointV(fQuad[qIndex], top, bottom, x);
279 fIntersections->insert(quadT, lineT, fQuad[qIndex]);
289 double lineT = SkDLine::NearPointV(fQuad[qIndex], top, bottom, x);
293 fIntersections->insert(quadT, lineT, fQuad[qIndex]);
299 SkDPoint xy = fQuad.ptAtT(t);
325 *pt = fQuad.ptAtT(qT);
331 const SkDQuad& fQuad;