Lines Matching full:intersections
32 static int doIntersect(SkIntersections& intersections, const SkDConic& conic, const SkDLine& line,
43 result = intersections.vertical(conic, top, bottom, line[0].fX, flipped);
51 result = intersections.horizontal(conic, left, right, line[0].fY, flipped);
53 intersections.intersect(conic, line);
54 result = intersections.used();
78 SkIntersections intersections;
79 int result = doIntersect(intersections, conic, line, flipped);
81 double conicT = intersections[0][inner];
83 double lineT = intersections[1][inner];
123 SkIntersections intersections;
125 int result = doIntersect(intersections, conic, line, flipped);
127 if (intersections.used() <= 0) {
131 double tt1 = intersections[0][pt];
134 double tt2 = intersections[1][pt];