Skip to content

Commit

Permalink
Fix automatic overhang threshold
Browse files Browse the repository at this point in the history
We should be supporting perimeters that are overhung further than half a
perimeter out, rather than two times the perimeter width.

Fixes: slic3r#2068
  • Loading branch information
hyperair authored and lordofhyphens committed Mar 11, 2017
1 parent 5d10d4c commit e01c50d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Slic3r/Print/SupportMaterial.pm
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ sub contact_area {
} else {
$diff = diff(
[ map $_->p, @{$layerm->slices} ],
offset([ map @$_, @{$lower_layer->slices} ], +$fw*2),
offset([ map @$_, @{$lower_layer->slices} ], +$fw/2),
);

# collapse very tiny spots
Expand Down

0 comments on commit e01c50d

Please sign in to comment.