| 60 | namespace { |
| 61 | |
| 62 | bool equalXY(MapCoord const& lhs, MapCoord const& rhs) { |
| 63 | return lhs.nativeX() == rhs.nativeX() |
| 64 | && lhs.nativeY() == rhs.nativeY(); |
| 65 | } |
| 66 | |
| 67 | PathObject::Intersections calculateIntersections(const PathObject& path1, const PathObject& path2) |
| 68 | { |
no test coverage detected