| 1033 | } |
| 1034 | |
| 1035 | bool aabb_overlap(const DBox& a, const DBox& b, double eps = 1.e-9) { |
| 1036 | return a[0].x() <= b[1].x() + eps && |
| 1037 | a[1].x() + eps >= b[0].x() && |
| 1038 | a[0].y() <= b[1].y() + eps && |
| 1039 | a[1].y() + eps >= b[0].y(); |
| 1040 | } |
| 1041 | |
| 1042 | CenterLineGraphData make_center_line_graph_data( |
| 1043 | const std::map<Point_2, std::vector<Point_2>>& line_graph, |
no outgoing calls
no test coverage detected