mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-30 23:22:02 +08:00
15 lines
360 B
C++
15 lines
360 B
C++
#ifndef PRUSAPARTS_H
|
|
#define PRUSAPARTS_H
|
|
|
|
#include <vector>
|
|
#include <libslic3r/ExPolygon.hpp>
|
|
|
|
using TestData = std::vector<Slic3r::Polygon>;
|
|
using TestDataEx = std::vector<Slic3r::ExPolygons>;
|
|
|
|
extern const TestData PRUSA_PART_POLYGONS;
|
|
extern const TestData PRUSA_STEGOSAUR_POLYGONS;
|
|
extern const TestDataEx PRUSA_PART_POLYGONS_EX;
|
|
|
|
#endif // PRUSAPARTS_H
|