Renamed Geometry::intersect() to Geometry::convex_polygons_intersect()

to convey its true meaning.
This commit is contained in:
Vojtech Bubnik 2021-10-23 14:29:42 +02:00
parent 723155a15c
commit be236eda85
3 changed files with 11 additions and 11 deletions

View file

@ -563,7 +563,7 @@ inline bool is_rotation_ninety_degrees(const Vec3d &rotation)
// Returns true if the intersection of the two convex polygons A and B
// is not an empty set.
bool intersects(const Polygon &A, const Polygon &B);
bool convex_polygons_intersect(const Polygon &A, const Polygon &B);
} } // namespace Slicer::Geometry