update libslic3r

This commit is contained in:
QIDI TECH
2025-08-04 10:13:51 +08:00
parent e3f49c2fb5
commit 8d4d60ec48
96 changed files with 4993 additions and 1903 deletions

View File

@@ -1023,11 +1023,6 @@ static ExPolygons outer_inner_brim_area(const Print& print,
if (brimAreaMap.find(object->id()) != brimAreaMap.end())
expolygons_append(brim_area, brimAreaMap[object->id()]);
}
if (!object->support_layers().empty() && object->support_layers().front()->print_z < print.config().initial_layer_print_height + EPSILON &&
!object->support_layers().front()->support_islands.empty())
brim_area_support = offset_ex(object->support_layers().front()->support_islands, brim_width);
support_material_extruder = object->config().support_filament;
if (support_material_extruder == 0 && object->has_support_material()) {
if (print.config().print_sequence == PrintSequence::ByObject)
@@ -1144,8 +1139,6 @@ static ExPolygons outer_inner_brim_area(const Print& print,
brim_area.push_back(tempAreas[index]);
}
}
if (supportBrimAreaMap.find(object->id()) != supportBrimAreaMap.end())
append(brim_area, supportBrimAreaMap[object->id()]);
}
return brim_area;
}