
Add search of intersecting points (compared with CGAL) Triangulation can [optionaly] accept multi points
16 lines
No EOL
496 B
C++
16 lines
No EOL
496 B
C++
#ifndef slic3r_IntersectionPoints_hpp_
|
|
#define slic3r_IntersectionPoints_hpp_
|
|
|
|
#include "ExPolygon.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
// collect all intersecting points
|
|
Pointfs intersection_points(const Lines &lines);
|
|
Pointfs intersection_points(const Polygon &polygon);
|
|
Pointfs intersection_points(const Polygons &polygons);
|
|
Pointfs intersection_points(const ExPolygon &expolygon);
|
|
Pointfs intersection_points(const ExPolygons &expolygons);
|
|
|
|
} // namespace Slic3r
|
|
#endif // slic3r_IntersectionPoints_hpp_
|