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-07-06 14:33:49 +00:00
|
|
|
class ExPolygon
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Polygon contour;
|
|
|
|
Polygons holes;
|
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;
|
|
|
|
|
|
|
|
#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-14 13:53:53 +00:00
|
|
|
typedef std::vector<ExPolygon> ExPolygons;
|
2013-07-11 16:55:51 +00:00
|
|
|
|
2013-07-07 20:36:14 +00:00
|
|
|
}
|
|
|
|
|
2013-07-06 14:33:49 +00:00
|
|
|
#endif
|