2019-10-04 10:59:31 +00:00
|
|
|
#ifndef PRINTER_PARTS_H
|
|
|
|
#define PRINTER_PARTS_H
|
|
|
|
|
|
|
|
#include <vector>
|
2021-03-28 12:23:44 +00:00
|
|
|
#include <libnest2d/libnest2d.hpp>
|
2019-10-04 10:59:31 +00:00
|
|
|
|
2021-03-28 12:23:44 +00:00
|
|
|
using TestData = std::vector<libnest2d::PathImpl>;
|
|
|
|
using TestDataEx = std::vector<libnest2d::PolygonImpl>;
|
2019-10-04 10:59:31 +00:00
|
|
|
|
|
|
|
extern const TestData PRINTER_PART_POLYGONS;
|
|
|
|
extern const TestData STEGOSAUR_POLYGONS;
|
|
|
|
extern const TestDataEx PRINTER_PART_POLYGONS_EX;
|
|
|
|
|
|
|
|
#endif // PRINTER_PARTS_H
|