improved option logic, custom setting for object soe that it uses the painted supports

This commit is contained in:
PavelMikus 2022-07-28 14:46:16 +02:00
parent 2401556193
commit 1d4f41a2fd
4 changed files with 34 additions and 21 deletions

View file

@ -434,7 +434,7 @@ std::tuple<LayerIslands, PixelGrid> reckon_islands(
const std::vector<ExtrusionLine> &layer_lines,
const Params &params) {
//extract extrusions (connected paths from multiple lines) from the layer_lines. belonging to single polyline is determined by origin_entity ptr.
//extract extrusions (connected paths from multiple lines) from the layer_lines. Grouping by the same polyline is determined by common origin_entity ptr.
// result is a vector of [start, end) index pairs into the layer_lines vector
std::vector<std::pair<size_t, size_t>> extrusions; //start and end idx (one beyond last extrusion) [start,end)
const ExtrusionEntity *current_ex = nullptr;