Home
last modified time | relevance | path

Searched refs:xIntercept (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/pathops/
DSkDLineIntersection.cpp223 double xIntercept = line[0].fX + fT[0][0] * (line[1].fX - line[0].fX); in horizontal() local
224 if (between(left, xIntercept, right)) { in horizontal()
225 fT[1][0] = (xIntercept - left) / (right - left); in horizontal()
232 fPt[0].fX = xIntercept; in horizontal()
DSkPathOpsQuad.h109 int verticalIntersect(double xIntercept, double roots[2]) const;
DSkDQuadLineIntersection.cpp468 int SkDQuad::verticalIntersect(double xIntercept, double roots[2]) const { in verticalIntersect() argument
469 return SkIntersections::VerticalIntercept(*this, xIntercept, roots); in verticalIntersect()
DSkDCubicLineIntersection.cpp453 int SkDCubic::verticalIntersect(double xIntercept, double roots[3]) const { in verticalIntersect() argument
454 return LineCubicIntersections::VerticalIntersect(*this, xIntercept, roots); in verticalIntersect()
DSkPathOpsCubic.h103 int verticalIntersect(double xIntercept, double roots[3]) const;