mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-26 09:38:37 -07:00
Fix: A proper handling of the support_base_pattern_spacing = 0 for the Tree Slim support (#11084)
Fixes #11082 Slicing is going to the endless loop when the `Base pattern spacing` value is 0 for `Tree Slim` support. Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
parent
a6d9fa49b4
commit
0bdb114881
1 changed files with 1 additions and 1 deletions
|
|
@ -1529,7 +1529,7 @@ void TreeSupport::generate_toolpaths()
|
|||
need_infill &= area_group.need_infill;
|
||||
std::shared_ptr<Fill> filler_support = std::shared_ptr<Fill>(Fill::new_from_type(layer_id == 0 ? ipConcentric : m_support_params.base_fill_pattern));
|
||||
filler_support->set_bounding_box(bbox_object);
|
||||
filler_support->spacing = object_config.support_base_pattern_spacing.value * support_density;// constant spacing to align support infill lines
|
||||
filler_support->spacing = support_spacing * support_density; // constant spacing to align support infill lines
|
||||
filler_support->angle = Geometry::deg2rad(object_config.support_angle.value);
|
||||
|
||||
Polygons loops = to_polygons(poly);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue