Home | History | Annotate | Download | only in Intersection

Lines Matching refs:right

111     A = line[1].x - line[0].x (adjacent side of the right triangle)
112 O = line[1].y - line[0].y (opposite side of the right triangle)
156 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) {
157 addHorizontalEndPoints(left, right, axisIntercept);
164 double lineT = (pt.x - left) / (right - left);
218 void addHorizontalEndPoints(double left, double right, double y)
227 if (quad[qIndex].x == right) {
332 int horizontalIntersect(const Quadratic& quad, double left, double right,
341 if (x < left || x > right) {
349 int horizontalIntersect(const Quadratic& quad, double left, double right, double y,
352 return q.horizontalIntersect(y, left, right, flipped);