Lines Matching refs:left
72 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
73 this->addExactHorizontalEndPoints(left, right, axisIntercept);
75 this->addNearHorizontalEndPoints(left, right, axisIntercept);
84 double lineT = (pt.fX - left) / (right - left);
219 void addExactHorizontalEndPoints(double left, double right, double y) {
221 double lineT = SkDLine::ExactPointH(fConic[cIndex], left, right, y);
230 void addNearHorizontalEndPoints(double left, double right, double y) {
236 double lineT = SkDLine::NearPointH(fConic[cIndex], left, right, y);
347 int SkIntersections::horizontal(const SkDConic& conic, double left, double right, double y,
349 SkDLine line = {{{ left, y }, { right, y }}};
351 return c.horizontalIntersect(y, left, right, flipped);