mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-23 22:54:08 -06:00
Bugfix: angle threshold was considered even when enforcing support
This commit is contained in:
parent
26a3cd5542
commit
cf8cfc1380
1 changed files with 2 additions and 2 deletions
|
@ -658,8 +658,8 @@ sub generate_support_material {
|
|||
my $distance = $i <= ($Slic3r::Config->support_material_enforce_layers + $Slic3r::Config->raft_layers)
|
||||
? 0
|
||||
: $overhang_width;
|
||||
@overhangs = map $_->offset_ex(2 * $overhang_width), @{diff_ex(
|
||||
[ map @$_, map $_->offset_ex(-$overhang_width), @{$layer->slices} ],
|
||||
@overhangs = map $_->offset_ex(2 * $distance), @{diff_ex(
|
||||
[ map @$_, map $_->offset_ex(-$distance), @{$layer->slices} ],
|
||||
[ map @$_, @{$lower_layer->slices} ],
|
||||
1,
|
||||
)};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue