| 65 | } |
| 66 | |
| 67 | PathObject::Intersections calculateIntersections(const PathObject& path1, const PathObject& path2) |
| 68 | { |
| 69 | PathObject::Intersections actual_intersections; |
| 70 | path1.calcAllIntersectionsWith(&path2, actual_intersections); |
| 71 | actual_intersections.normalize(); |
| 72 | return actual_intersections; |
| 73 | } |
| 74 | |
| 75 | |
| 76 | } // namespace |
no test coverage detected