Files
OrcaSlicer/xs/src/ExPolygonCollection.hpp
2013-07-18 19:09:07 +02:00

21 lines
348 B
C++

#ifndef slic3r_ExPolygonCollection_hpp_
#define slic3r_ExPolygonCollection_hpp_
#include <myinit.h>
#include "ExPolygon.hpp"
namespace Slic3r {
class ExPolygonCollection
{
public:
ExPolygonsPtr expolygons;
void scale(double factor);
void translate(double x, double y);
void rotate(double angle, Point* center);
};
}
#endif