Lines Matching refs:intersections
33 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line,
45 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped);
54 result = intersections.horizontal(quad, left, right, line[0].fY, flipped);
56 intersections.intersect(quad, line);
57 result = intersections.used();
92 SkIntersections intersections;
93 int result = doIntersect(intersections, quad, line, flipped);
95 double quadT = intersections[0][inner];
97 double lineT = intersections[1][inner];
131 SkIntersections intersections;
133 int result = doIntersect(intersections, quad, line, flipped);
135 if (intersections.used() <= 0) {
139 double tt1 = intersections[0][pt];
142 double tt2 = intersections[1][pt];