HomeSort by relevance Sort by last modified time
    Searched refs:lineT (Results 1 - 6 of 6) sorted by null

  /external/skia/src/pathops/
SkDConicLineIntersection.cpp 83 double lineT = (pt.fX - left) / (right - left);
84 if (this->pinTs(&conicT, &lineT, &pt, kPointInitialized)
86 fIntersections->insert(conicT, lineT, pt);
105 double lineT = this->findLineT(conicT);
107 SkDEBUGCODE(SkDPoint linePt = fLine->ptAtT(lineT));
110 if (this->pinTs(&conicT, &lineT, &pt, kPointUninitialized)
112 fIntersections->insert(conicT, lineT, pt);
156 double lineT = (pt.fY - top) / (bottom - top);
157 if (this->pinTs(&conicT, &lineT, &pt, kPointInitialized)
159 fIntersections->insert(conicT, lineT, pt)
    [all...]
SkDQuadLineIntersection.cpp 177 double lineT = findLineT(quadT);
179 if (pinTs(&quadT, &lineT, &pt, kPointUninitialized) && uniqueAnswer(quadT, pt)) {
180 fIntersections->insert(quadT, lineT, pt);
207 double lineT = (pt.fX - left) / (right - left);
208 if (pinTs(&quadT, &lineT, &pt, kPointInitialized) && uniqueAnswer(quadT, pt)) {
209 fIntersections->insert(quadT, lineT, pt);
263 double lineT = (pt.fY - top) / (bottom - top);
264 if (pinTs(&quadT, &lineT, &pt, kPointInitialized) && uniqueAnswer(quadT, pt)) {
265 fIntersections->insert(quadT, lineT, pt);
279 double lineT = fLine->exactPoint(fQuad[qIndex])
    [all...]
SkDCubicLineIntersection.cpp 155 double lineT = findLineT(cubicT);
157 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized) && uniqueAnswer(cubicT, pt)) {
158 fIntersections->insert(cubicT, lineT, pt);
192 double lineT = (pt.fX - left) / (right - left);
193 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized) && uniqueAnswer(cubicT, pt)) {
194 fIntersections->insert(cubicT, lineT, pt);
255 double lineT = (pt.fY - top) / (bottom - top);
256 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized) && uniqueAnswer(cubicT, pt)) {
257 fIntersections->insert(cubicT, lineT, pt);
271 double lineT = fLine.exactPoint(fCubic[cIndex])
    [all...]
  /external/skia/tests/
PathOpsConicLineIntersectionTest.cpp 80 double lineT = intersections[1][inner];
81 SkDPoint lineXY = line.ptAtT(lineT);
PathOpsQuadLineIntersectionTest.cpp 91 double lineT = intersections[1][inner];
92 SkDPoint lineXY = line.ptAtT(lineT);
PathOpsQuadLineIntersectionThreadedTest.cpp 59 double lineT = intersections[1][index];
60 SkDPoint lineXY = line.ptAtT(lineT);

Completed in 377 milliseconds