Lines Matching refs:left
184 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
185 addExactHorizontalEndPoints(left, right, axisIntercept);
187 addNearHorizontalEndPoints(left, right, axisIntercept);
194 double lineT = (pt.fX - left) / (right - left);
314 void addExactHorizontalEndPoints(double left, double right, double y) {
316 double lineT = SkDLine::ExactPointH(fCubic[cIndex], left, right, y);
325 void addNearHorizontalEndPoints(double left, double right, double y) {
331 double lineT = SkDLine::NearPointH(fCubic[cIndex], left, right, y);
418 int SkIntersections::horizontal(const SkDCubic& cubic, double left, double right, double y,
420 SkDLine line = {{{ left, y }, { right, y }}};
422 return c.horizontalIntersect(y, left, right, flipped);