Lines Matching refs:left
125 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
126 addHorizontalEndPoints(left, right, axisIntercept);
133 double lineT = (pt.x - left) / (right - left);
183 void addHorizontalEndPoints(double left, double right, double y)
189 if (cubic[cIndex].x == left) {
259 int horizontalIntersect(const Cubic& cubic, double left, double right, double y,
268 if (x < left || x > right) {
276 int horizontalIntersect(const Cubic& cubic, double left, double right, double y,
279 return c.horizontalIntersect(y, left, right, flipped);