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

  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadLineIntersection.cpp 150 double lineT = findLineT(quadT);
152 if (pinTs(&quadT, &lineT, &pt, kPointUninitialized)) {
153 fIntersections->insert(quadT, lineT, pt);
180 double lineT = (pt.fX - left) / (right - left);
181 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
182 fIntersections->insert(quadT, lineT, pt);
211 double lineT = (pt.fY - top) / (bottom - top);
212 if (pinTs(&quadT, &lineT, &pt, kPointInitialized)) {
213 fIntersections->insert(quadT, lineT, pt);
226 double lineT = fLine.exactPoint(fQuad[qIndex])
    [all...]
SkDCubicLineIntersection.cpp 132 double lineT = findLineT(cubicT);
134 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized)) {
155 fIntersections->insert(cubicT, lineT, pt);
192 double lineT = (pt.fX - left) / (right - left);
193 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
194 fIntersections->insert(cubicT, lineT, pt);
232 double lineT = (pt.fY - top) / (bottom - top);
233 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized)) {
234 fIntersections->insert(cubicT, lineT, pt);
247 double lineT = fLine.exactPoint(fCubic[cIndex])
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
LineCubicIntersection.cpp 108 double lineT = findLineT(cubicT);
109 if (pinTs(cubicT, lineT)) {
111 xy_at_t(line, lineT, pt.x, pt.y);
112 intersections.insert(cubicT, lineT, pt);
133 double lineT = (pt.x - left) / (right - left);
134 if (pinTs(cubicT, lineT)) {
135 intersections.insert(cubicT, lineT, pt);
159 double lineT = (pt.y - top) / (bottom - top);
160 if (pinTs(cubicT, lineT)) {
161 intersections.insert(cubicT, lineT, pt)
    [all...]
LineQuadraticIntersection.cpp 136 double lineT = findLineT(quadT);
137 if (pinTs(quadT, lineT)) {
139 xy_at_t(line, lineT, pt.x, pt.y);
140 intersections.insert(quadT, lineT, pt);
164 double lineT = (pt.x - left) / (right - left);
165 if (pinTs(quadT, lineT)) {
166 intersections.insert(quadT, lineT, pt);
193 double lineT = (pt.y - top) / (bottom - top);
194 if (pinTs(quadT, lineT)) {
195 intersections.insert(quadT, lineT, pt)
    [all...]
LineQuadraticIntersection_Test.cpp 80 double lineT = intersections.fT[1][inner];
82 xy_at_t(line, lineT, lineX, lineY);
161 double lineT = intersections.fT[1][index];
163 xy_at_t(line, lineT, lineX, lineY);
LineIntersection.cpp 274 double lineT = line[0].y;
276 if (lineT > lineB) {
277 SkTSwap(lineT, lineB);
279 double overlapT = SkTMax(top, lineT);
QuadraticIntersection.cpp 181 double lineT = t_at(treat1AsLine ? line1 : line2, midQuad);
182 xy_at_t(treat1AsLine ? line1 : line2, lineT, midLine.x, midLine.y);
  /external/chromium_org/third_party/skia/tests/
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 273 milliseconds