Files
OrcaSlicer-bambulab/xs/src/ExPolygonCollection.hpp
T

21 lines
348 B
C++
Raw Normal View History

2013-07-14 00:38:01 +02:00
#ifndef slic3r_ExPolygonCollection_hpp_
#define slic3r_ExPolygonCollection_hpp_
#include <myinit.h>
2013-07-14 00:38:01 +02:00
#include "ExPolygon.hpp"
namespace Slic3r {
class ExPolygonCollection
{
public:
2013-07-18 19:09:07 +02:00
ExPolygonsPtr expolygons;
2013-07-14 00:38:01 +02:00
void scale(double factor);
void translate(double x, double y);
void rotate(double angle, Point* center);
};
}
#endif