Commented on non-empty requirement of the nozzle level polygon in PrinterGeometry.

This commit is contained in:
surynek 2025-01-27 13:20:08 +01:00 committed by Lukas Matena
parent e4bc8ccbf2
commit 8f89b038af

View File

@ -36,10 +36,12 @@ struct PrinterGeometry
{
coord_t x_size;
coord_t y_size;
// at least height 0 (corresponding to nozzle) must be present in convex_height
std::set<coord_t> convex_heights;
std::set<coord_t> box_heights;
// <height, polygons at given height>, at least one polygon must be present for height 0
std::map<coord_t, std::vector<Slic3r::Polygon> > extruder_slices;
int convert_Geometry2PlateBoundingBoxSize(void) const;