1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-12 08:14:26 +00:00
Files
OrcaSlicer-bambulab/xs/src/ExPolygonCollection.hpp
T

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