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 118 double lineT = findLineT(cubicT);
120 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized)) {
141 fIntersections->insert(cubicT, lineT, pt);
166 double lineT = (pt.fX - left) / (right - left);
167 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
168 fIntersections->insert(cubicT, lineT, pt);
194 double lineT = (pt.fY - top) / (bottom - top);
195 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
196 fIntersections->insert(cubicT, lineT, pt);
209 double lineT = fLine.exactPoint(fCubic[cIndex])
    [all...]
SkDQuadLineIntersection.cpp 151 double lineT = findLineT(quadT);
153 if (pinTs(&quadT, &lineT, &pt, kPointUninitialized)) {
154 fIntersections->insert(quadT, lineT, pt);
181 double lineT = (pt.fX - left) / (right - left);
182 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
183 fIntersections->insert(quadT, lineT, pt);
212 double lineT = (pt.fY - top) / (bottom - top);
213 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
214 fIntersections->insert(quadT, lineT, pt);
227 double lineT = fLine.exactPoint(fQuad[qIndex])
    [all...]
  /external/skia/src/pathops/
SkDCubicLineIntersection.cpp 118 double lineT = findLineT(cubicT);
120 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized)) {
141 fIntersections->insert(cubicT, lineT, pt);
166 double lineT = (pt.fX - left) / (right - left);
167 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
168 fIntersections->insert(cubicT, lineT, pt);
194 double lineT = (pt.fY - top) / (bottom - top);
195 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
196 fIntersections->insert(cubicT, lineT, pt);
209 double lineT = fLine.exactPoint(fCubic[cIndex])
    [all...]
SkDQuadLineIntersection.cpp 151 double lineT = findLineT(quadT);
153 if (pinTs(&quadT, &lineT, &pt, kPointUninitialized)) {
154 fIntersections->insert(quadT, lineT, pt);
181 double lineT = (pt.fX - left) / (right - left);
182 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
183 fIntersections->insert(quadT, lineT, pt);
212 double lineT = (pt.fY - top) / (bottom - top);
213 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
214 fIntersections->insert(quadT, lineT, pt);
227 double lineT = fLine.exactPoint(fQuad[qIndex])
    [all...]
  /external/skia/tests/
PathOpsQuadLineIntersectionTest.cpp 89 double lineT = intersections[1][inner];
90 SkDPoint lineXY = line.ptAtT(lineT);
PathOpsQuadLineIntersectionThreadedTest.cpp 59 double lineT = intersections[1][index];
60 SkDPoint lineXY = line.ptAtT(lineT);

Completed in 128 milliseconds