mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-01-31 16:08:43 +03:00
17 lines
523 B
C++
17 lines
523 B
C++
#ifndef slic3r_IntersectionPoints_hpp_
|
|
#define slic3r_IntersectionPoints_hpp_
|
|
|
|
#include "ExPolygon.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
// collect all intersecting points
|
|
//FIXME O(n^2) complexity!
|
|
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_
|