Searched defs:cubicT (Results 1 - 2 of 2) sorted by relevance

/external/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp161 double cubicT = i[0][0]; local
162 SkDPoint prev = cubic.ptAtT(cubicT * 2 - 1);
163 SkDPoint sect = cubic.ptAtT(cubicT);
/external/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp156 double cubicT = rootVals[index]; local
157 double lineT = findLineT(cubicT);
159 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized) && uniqueAnswer(cubicT, pt)) {
160 fIntersections->insert(cubicT, lineT, pt);
192 double cubicT = roots[index]; local
193 SkDPoint pt = { fCubic.ptAtT(cubicT).fX, axisIntercept };
195 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized) && uniqueAnswer(cubicT, pt)) {
196 fIntersections->insert(cubicT, line
206 uniqueAnswer(double cubicT, const SkDPoint& pt) argument
255 double cubicT = roots[index]; local
277 double cubicT = (double) (cIndex >> 1); local
286 double cubicT = (double) (cIndex >> 1); local
305 double cubicT = ((SkDCurve*) &fCubic)->nearPoint(SkPath::kCubic_Verb, local
320 double cubicT = (double) (cIndex >> 1); local
327 double cubicT = (double) (cIndex >> 1); local
346 double cubicT = (double) (cIndex >> 1); local
353 double cubicT = (double) (cIndex >> 1); local
376 pinTs(double* cubicT, double* lineT, SkDPoint* pt, PinTPoint ptSet) argument
[all...]

Completed in 66 milliseconds