2013-07-06 14:33:49 +00:00
|
|
|
#ifndef slic3r_ExPolygon_hpp_
|
|
|
|
#define slic3r_ExPolygon_hpp_
|
|
|
|
|
2013-07-14 13:53:53 +00:00
|
|
|
#include "Polygon.hpp"
|
2013-07-15 18:31:43 +00:00
|
|
|
#include <vector>
|
2013-07-06 14:33:49 +00:00
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
namespace Slic3r {
|
|
|
|
|
2013-11-22 01:16:10 +00:00
|
|
|
class ExPolygon;
|
|
|
|
typedef std::vector<ExPolygon> ExPolygons;
|
|
|
|
|
2013-07-06 14:33:49 +00:00
|
|
|
class ExPolygon
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Polygon contour;
|
|
|
|
Polygons holes;
|
2013-11-21 14:12:06 +00:00
|
|
|
operator Polygons() const;
|
2013-09-13 12:48:40 +00:00
|
|
|
void scale(double factor);
|
|
|
|
void translate(double x, double y);
|
|
|
|
void rotate(double angle, Point* center);
|
|
|
|
double area() const;
|
|
|
|
bool is_valid() const;
|
2013-11-21 15:21:42 +00:00
|
|
|
bool contains_line(const Line* line) const;
|
|
|
|
bool contains_point(const Point* point) const;
|
2013-11-22 01:16:10 +00:00
|
|
|
Polygons simplify_p(double tolerance) const;
|
2013-11-21 19:25:24 +00:00
|
|
|
ExPolygons simplify(double tolerance) const;
|
|
|
|
void simplify(double tolerance, ExPolygons &expolygons) const;
|
2013-09-13 12:48:40 +00:00
|
|
|
|
|
|
|
#ifdef SLIC3RXS
|
2013-07-15 20:57:22 +00:00
|
|
|
void from_SV(SV* poly_sv);
|
|
|
|
void from_SV_check(SV* poly_sv);
|
2013-09-09 20:27:58 +00:00
|
|
|
SV* to_AV();
|
2013-07-16 18:09:53 +00:00
|
|
|
SV* to_SV_ref();
|
2013-09-03 17:26:58 +00:00
|
|
|
SV* to_SV_clone_ref() const;
|
|
|
|
SV* to_SV_pureperl() const;
|
2013-09-13 12:48:40 +00:00
|
|
|
#endif
|
2013-07-06 14:33:49 +00:00
|
|
|
};
|
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
}
|
|
|
|
|
2013-07-06 14:33:49 +00:00
|
|
|
#endif
|