Lines Matching refs:right
182 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
183 addExactHorizontalEndPoints(left, right, axisIntercept);
185 addNearHorizontalEndPoints(left, right, axisIntercept);
192 double lineT = (pt.fX - left) / (right - left);
296 void addExactHorizontalEndPoints(double left, double right, double y) {
298 double lineT = SkDLine::ExactPointH(fCubic[cIndex], left, right, y);
307 void addNearHorizontalEndPoints(double left, double right, double y) {
313 double lineT = SkDLine::NearPointH(fCubic[cIndex], left, right, y);
400 int SkIntersections::horizontal(const SkDCubic& cubic, double left, double right, double y,
402 SkDLine line = {{{ left, y }, { right, y }}};
404 return c.horizontalIntersect(y, left, right, flipped);