2018-05-17 10:37:26 +02:00
|
|
|
#ifndef PRINTER_PARTS_H
|
|
|
|
|
#define PRINTER_PARTS_H
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
2019-03-27 18:37:50 +01:00
|
|
|
#include <libnest2d/backends/clipper/clipper_polygon.hpp>
|
2018-07-16 16:07:29 +02:00
|
|
|
|
2018-06-05 12:02:45 +02:00
|
|
|
using TestData = std::vector<ClipperLib::Path>;
|
2019-03-27 18:37:50 +01:00
|
|
|
using TestDataEx = std::vector<ClipperLib::Polygon>;
|
2018-06-05 12:02:45 +02:00
|
|
|
|
|
|
|
|
extern const TestData PRINTER_PART_POLYGONS;
|
|
|
|
|
extern const TestData STEGOSAUR_POLYGONS;
|
2018-07-16 16:07:29 +02:00
|
|
|
extern const TestDataEx PRINTER_PART_POLYGONS_EX;
|
2018-05-17 10:37:26 +02:00
|
|
|
|
|
|
|
|
#endif // PRINTER_PARTS_H
|