mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-06-20 01:26:25 +03:00
Conflicts: lib/Slic3r.pm lib/Slic3r/ExPolygon.pm lib/Slic3r/Fill.pm lib/Slic3r/Fill/Rectilinear.pm lib/Slic3r/GCode.pm lib/Slic3r/GUI/Plater.pm lib/Slic3r/Geometry/Clipper.pm lib/Slic3r/Layer/Region.pm lib/Slic3r/Print.pm lib/Slic3r/Print/Object.pm lib/Slic3r/TriangleMesh.pm t/shells.t xs/MANIFEST
29 lines
501 B
C++
29 lines
501 B
C++
#ifndef slic3r_ExPolygon_hpp_
|
|
#define slic3r_ExPolygon_hpp_
|
|
|
|
#include "Polygon.hpp"
|
|
#include <vector>
|
|
|
|
namespace Slic3r {
|
|
|
|
class ExPolygon
|
|
{
|
|
public:
|
|
Polygon contour;
|
|
Polygons holes;
|
|
void from_SV(SV* poly_sv);
|
|
void from_SV_check(SV* poly_sv);
|
|
SV* to_SV();
|
|
SV* to_SV_ref();
|
|
SV* to_SV_pureperl();
|
|
void scale(double factor);
|
|
void translate(double x, double y);
|
|
void rotate(double angle, Point* center);
|
|
};
|
|
|
|
typedef std::vector<ExPolygon> ExPolygons;
|
|
|
|
}
|
|
|
|
#endif
|