Searched refs:xIntercept (Results 1 – 5 of 5) sorted by relevance
/external/skia/src/pathops/ |
D | SkDLineIntersection.cpp | 223 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()
|
D | SkPathOpsQuad.h | 101 int verticalIntersect(double xIntercept, double roots[2]) const;
|
D | SkDQuadLineIntersection.cpp | 452 int SkDQuad::verticalIntersect(double xIntercept, double roots[2]) const { in verticalIntersect() argument 453 return SkIntersections::VerticalIntercept(*this, xIntercept, roots); in verticalIntersect()
|
D | SkDCubicLineIntersection.cpp | 435 int SkDCubic::verticalIntersect(double xIntercept, double roots[3]) const { in verticalIntersect() argument 436 return LineCubicIntersections::VerticalIntersect(*this, xIntercept, roots); in verticalIntersect()
|
D | SkPathOpsCubic.h | 99 int verticalIntersect(double xIntercept, double roots[3]) const;
|