Searched defs:yIntercept (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/skia/experimental/Intersection/
H A DLineIntersection.cpp264 double yIntercept = line[0].y + intersections.fT[0][0] local
266 if (yIntercept > bottom || yIntercept < top) {
269 intersections.fT[1][0] = (yIntercept - top) / (bottom - top);
H A DEdgeWalker.cpp2108 SkScalar yIntercept; local
2111 yIntercept = LineYAtT(wt.fPts, fTs[index]);
2115 yIntercept = QuadYAtT(wt.fPts, fTs[index]);
2119 yIntercept = CubicYAtT(wt.fPts, fTs[index]);
2125 if (yIntercept > y && bottom > yIntercept) {
2126 bottom = yIntercept;
/external/skia/experimental/Intersection/
H A DLineIntersection.cpp264 double yIntercept = line[0].y + intersections.fT[0][0] local
266 if (yIntercept > bottom || yIntercept < top) {
269 intersections.fT[1][0] = (yIntercept - top) / (bottom - top);
H A DEdgeWalker.cpp2108 SkScalar yIntercept; local
2111 yIntercept = LineYAtT(wt.fPts, fTs[index]);
2115 yIntercept = QuadYAtT(wt.fPts, fTs[index]);
2119 yIntercept = CubicYAtT(wt.fPts, fTs[index]);
2125 if (yIntercept > y && bottom > yIntercept) {
2126 bottom = yIntercept;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDLineIntersection.cpp356 double yIntercept = line[0].fY + fT[0][0] * (line[1].fY - line[0].fY); local
357 if (between(top, yIntercept, bottom)) {
358 fT[1][0] = (yIntercept - top) / (bottom - top);
366 fPt[0].fY = yIntercept;
/external/skia/src/pathops/
H A DSkDLineIntersection.cpp353 double yIntercept = line[0].fY + fT[0][0] * (line[1].fY - line[0].fY); local
354 if (between(top, yIntercept, bottom)) {
355 fT[1][0] = (yIntercept - top) / (bottom - top);
363 fPt[0].fY = yIntercept;

Completed in 137 milliseconds