mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-15 17:42:14 +00:00
22 lines
365 B
C++
22 lines
365 B
C++
#ifndef slic3r_ExPolygonCollection_hpp_
|
|
#define slic3r_ExPolygonCollection_hpp_
|
|
|
|
#include <myinit.h>
|
|
#include "ExPolygon.hpp"
|
|
|
|
namespace Slic3r {
|
|
|
|
class ExPolygonCollection
|
|
{
|
|
public:
|
|
ExPolygons expolygons;
|
|
SV* arrayref();
|
|
void scale(double factor);
|
|
void translate(double x, double y);
|
|
void rotate(double angle, Point* center);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|