Lines Matching refs:intersections
34 static int doIntersect(SkIntersections& intersections, const SkDConic& conic, const SkDLine& line,
46 result = intersections.vertical(conic, top, bottom, line[0].fX, flipped);
55 result = intersections.horizontal(conic, left, right, line[0].fY, flipped);
57 intersections.intersect(conic, line);
58 result = intersections.used();
82 SkIntersections intersections;
83 int result = doIntersect(intersections, conic, line, flipped);
85 double conicT = intersections[0][inner];
87 double lineT = intersections[1][inner];
126 SkIntersections intersections;
128 int result = doIntersect(intersections, conic, line, flipped);
130 if (intersections.used() <= 0) {
134 double tt1 = intersections[0][pt];
137 double tt2 = intersections[1][pt];