mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 20:03:47 +00:00
Bugfix: angle threshold was considered even when enforcing support
This commit is contained in:
@@ -658,8 +658,8 @@ sub generate_support_material {
|
|||||||
my $distance = $i <= ($Slic3r::Config->support_material_enforce_layers + $Slic3r::Config->raft_layers)
|
my $distance = $i <= ($Slic3r::Config->support_material_enforce_layers + $Slic3r::Config->raft_layers)
|
||||||
? 0
|
? 0
|
||||||
: $overhang_width;
|
: $overhang_width;
|
||||||
@overhangs = map $_->offset_ex(2 * $overhang_width), @{diff_ex(
|
@overhangs = map $_->offset_ex(2 * $distance), @{diff_ex(
|
||||||
[ map @$_, map $_->offset_ex(-$overhang_width), @{$layer->slices} ],
|
[ map @$_, map $_->offset_ex(-$distance), @{$layer->slices} ],
|
||||||
[ map @$_, @{$lower_layer->slices} ],
|
[ map @$_, @{$lower_layer->slices} ],
|
||||||
1,
|
1,
|
||||||
)};
|
)};
|
||||||
|
|||||||
Reference in New Issue
Block a user