Home | History | Annotate | Download | only in pathops

Lines Matching refs:fCubic

85         : fCubic(c)
101 r[n].fX = (fCubic[n].fY - fLine[0].fY) * adj - (fCubic[n].fX - fLine[0].fX) * opp;
118 SkDPoint cPt = fCubic.ptAtT(cubicT);
133 SkDCubic::Coefficients(&fCubic[0].fY, &A, &B, &C, &D);
144 SkDPoint pt = fCubic.ptAtT(cubicT);
161 SkDCubic::Coefficients(&fCubic[0].fX, &A, &B, &C, &D);
172 SkDPoint pt = fCubic.ptAtT(cubicT);
191 double lineT = fLine.exactPoint(fCubic[cIndex]);
196 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
206 double lineT = fLine.nearPoint(fCubic[cIndex]);
210 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
216 double lineT = SkDLine::ExactPointH(fCubic[cIndex], left, right, y);
221 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
231 double lineT = SkDLine::NearPointH(fCubic[cIndex], left, right, y);
235 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
242 double lineT = SkDLine::ExactPointV(fCubic[cIndex], top, bottom, x);
247 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
257 double lineT = SkDLine::NearPointV(fCubic[cIndex], top, bottom, x);
261 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
267 SkDPoint xy = fCubic.ptAtT(t);
288 *pt = fCubic.ptAtT(cT);
294 const SkDCubic& fCubic;