PrusaSlicer-NonPlainar/xs/src/ExPolygon.hpp

35 lines
628 B
C++
Raw Normal View History

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
namespace Slic3r {
2013-07-06 14:33:49 +00:00
class ExPolygon
{
public:
Polygon contour;
Polygons holes;
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
void from_SV(SV* poly_sv);
void from_SV_check(SV* poly_sv);
SV* to_AV();
SV* to_SV_ref();
SV* to_SV_clone_ref() const;
SV* to_SV_pureperl() const;
#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-06 14:33:49 +00:00
#endif