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

  /external/chromium_org/third_party/skia/src/pathops/
SkDCubicLineIntersection.cpp 114 double lineT = findLineT(cubicT);
116 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized)) {
122 fIntersections->insert(cubicT, lineT, pt);
145 double lineT = (pt.fX - left) / (right - left);
146 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
147 fIntersections->insert(cubicT, lineT, pt);
173 double lineT = (pt.fY - top) / (bottom - top);
174 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
175 fIntersections->insert(cubicT, lineT, pt);
191 double lineT = fLine.exactPoint(fCubic[cIndex])
    [all...]
SkDQuadLineIntersection.cpp 144 double lineT = findLineT(quadT);
146 if (pinTs(&quadT, &lineT, &pt, kPointUninitialized)) {
147 fIntersections->insert(quadT, lineT, pt);
173 double lineT = (pt.fX - left) / (right - left);
174 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
175 fIntersections->insert(quadT, lineT, pt);
204 double lineT = (pt.fY - top) / (bottom - top);
205 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
206 fIntersections->insert(quadT, lineT, pt);
222 double lineT = fLine.exactPoint(fQuad[qIndex])
    [all...]
  /external/skia/src/pathops/
SkDCubicLineIntersection.cpp 114 double lineT = findLineT(cubicT);
116 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized)) {
122 fIntersections->insert(cubicT, lineT, pt);
145 double lineT = (pt.fX - left) / (right - left);
146 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
147 fIntersections->insert(cubicT, lineT, pt);
173 double lineT = (pt.fY - top) / (bottom - top);
174 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
175 fIntersections->insert(cubicT, lineT, pt);
191 double lineT = fLine.exactPoint(fCubic[cIndex])
    [all...]
SkDQuadLineIntersection.cpp 144 double lineT = findLineT(quadT);
146 if (pinTs(&quadT, &lineT, &pt, kPointUninitialized)) {
147 fIntersections->insert(quadT, lineT, pt);
173 double lineT = (pt.fX - left) / (right - left);
174 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
175 fIntersections->insert(quadT, lineT, pt);
204 double lineT = (pt.fY - top) / (bottom - top);
205 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
206 fIntersections->insert(quadT, lineT, pt);
222 double lineT = fLine.exactPoint(fQuad[qIndex])
    [all...]
  /external/skia/tests/
PathOpsQuadLineIntersectionTest.cpp 84 double lineT = intersections[1][inner];
85 SkDPoint lineXY = line.ptAtT(lineT);
PathOpsQuadLineIntersectionThreadedTest.cpp 59 double lineT = intersections[1][index];
60 SkDPoint lineXY = line.ptAtT(lineT);

Completed in 291 milliseconds