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

  /external/skia/src/pathops/
SkDConicLineIntersection.cpp 84 double lineT = (pt.fX - left) / (right - left);
85 if (this->pinTs(&conicT, &lineT, &pt, kPointInitialized)
87 fIntersections->insert(conicT, lineT, pt);
106 double lineT = this->findLineT(conicT);
111 SkDEBUGCODE(SkDPoint linePt = fLine->ptAtT(lineT));
116 if (this->pinTs(&conicT, &lineT, &pt, kPointUninitialized)
118 fIntersections->insert(conicT, lineT, pt);
162 double lineT = (pt.fY - top) / (bottom - top);
163 if (this->pinTs(&conicT, &lineT, &pt, kPointInitialized)
165 fIntersections->insert(conicT, lineT, pt)
    [all...]
SkDQuadLineIntersection.cpp 178 double lineT = findLineT(quadT);
180 if (pinTs(&quadT, &lineT, &pt, kPointUninitialized) && uniqueAnswer(quadT, pt)) {
181 fIntersections->insert(quadT, lineT, pt);
208 double lineT = (pt.fX - left) / (right - left);
209 if (pinTs(&quadT, &lineT, &pt, kPointInitialized) && uniqueAnswer(quadT, pt)) {
210 fIntersections->insert(quadT, lineT, pt);
264 double lineT = (pt.fY - top) / (bottom - top);
265 if (pinTs(&quadT, &lineT, &pt, kPointInitialized) && uniqueAnswer(quadT, pt)) {
266 fIntersections->insert(quadT, lineT, pt);
280 double lineT = fLine->exactPoint(fQuad[qIndex])
    [all...]
SkDCubicLineIntersection.cpp 157 double lineT = findLineT(cubicT);
159 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized) && uniqueAnswer(cubicT, pt)) {
160 fIntersections->insert(cubicT, lineT, pt);
194 double lineT = (pt.fX - left) / (right - left);
195 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized) && uniqueAnswer(cubicT, pt)) {
196 fIntersections->insert(cubicT, lineT, pt);
257 double lineT = (pt.fY - top) / (bottom - top);
258 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized) && uniqueAnswer(cubicT, pt)) {
259 fIntersections->insert(cubicT, lineT, pt);
273 double lineT = fLine.exactPoint(fCubic[cIndex])
    [all...]
  /external/skqp/src/pathops/
SkDConicLineIntersection.cpp 84 double lineT = (pt.fX - left) / (right - left);
85 if (this->pinTs(&conicT, &lineT, &pt, kPointInitialized)
87 fIntersections->insert(conicT, lineT, pt);
106 double lineT = this->findLineT(conicT);
111 SkDEBUGCODE(SkDPoint linePt = fLine->ptAtT(lineT));
116 if (this->pinTs(&conicT, &lineT, &pt, kPointUninitialized)
118 fIntersections->insert(conicT, lineT, pt);
162 double lineT = (pt.fY - top) / (bottom - top);
163 if (this->pinTs(&conicT, &lineT, &pt, kPointInitialized)
165 fIntersections->insert(conicT, lineT, pt)
    [all...]
SkDQuadLineIntersection.cpp 178 double lineT = findLineT(quadT);
180 if (pinTs(&quadT, &lineT, &pt, kPointUninitialized) && uniqueAnswer(quadT, pt)) {
181 fIntersections->insert(quadT, lineT, pt);
208 double lineT = (pt.fX - left) / (right - left);
209 if (pinTs(&quadT, &lineT, &pt, kPointInitialized) && uniqueAnswer(quadT, pt)) {
210 fIntersections->insert(quadT, lineT, pt);
264 double lineT = (pt.fY - top) / (bottom - top);
265 if (pinTs(&quadT, &lineT, &pt, kPointInitialized) && uniqueAnswer(quadT, pt)) {
266 fIntersections->insert(quadT, lineT, pt);
280 double lineT = fLine->exactPoint(fQuad[qIndex])
    [all...]
SkDCubicLineIntersection.cpp 157 double lineT = findLineT(cubicT);
159 if (pinTs(&cubicT, &lineT, &pt, kPointUninitialized) && uniqueAnswer(cubicT, pt)) {
160 fIntersections->insert(cubicT, lineT, pt);
194 double lineT = (pt.fX - left) / (right - left);
195 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized) && uniqueAnswer(cubicT, pt)) {
196 fIntersections->insert(cubicT, lineT, pt);
257 double lineT = (pt.fY - top) / (bottom - top);
258 if (pinTs(&cubicT, &lineT, &pt, kPointInitialized) && uniqueAnswer(cubicT, pt)) {
259 fIntersections->insert(cubicT, lineT, pt);
273 double lineT = fLine.exactPoint(fCubic[cIndex])
    [all...]
  /external/skia/tests/
PathOpsQuadLineIntersectionTest.cpp 93 double lineT = intersections[1][inner];
94 SkDPoint lineXY = line.ptAtT(lineT);
PathOpsQuadLineIntersectionThreadedTest.cpp 59 double lineT = intersections[1][index];
60 SkDPoint lineXY = line.ptAtT(lineT);
PathOpsConicLineIntersectionTest.cpp 83 double lineT = intersections[1][inner];
84 SkDPoint lineXY = line.ptAtT(lineT);
  /external/skqp/tests/
PathOpsQuadLineIntersectionTest.cpp 93 double lineT = intersections[1][inner];
94 SkDPoint lineXY = line.ptAtT(lineT);
PathOpsQuadLineIntersectionThreadedTest.cpp 59 double lineT = intersections[1][index];
60 SkDPoint lineXY = line.ptAtT(lineT);
PathOpsConicLineIntersectionTest.cpp 83 double lineT = intersections[1][inner];
84 SkDPoint lineXY = line.ptAtT(lineT);

Completed in 87 milliseconds