mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-12 21:18:58 +08:00
Bugfix: small perimeter speed was applied to all holes too, regardless of their size. #175
This commit is contained in:
parent
4ade11b26e
commit
2151457d9e
@ -126,7 +126,7 @@ sub make_perimeter {
|
|||||||
|
|
||||||
# detect small perimeters by checking their area
|
# detect small perimeters by checking their area
|
||||||
for (@{ $layer->perimeters }) {
|
for (@{ $layer->perimeters }) {
|
||||||
$_->role('small-perimeter') if $_->polygon->area < $Slic3r::small_perimeter_area;
|
$_->role('small-perimeter') if abs($_->polygon->area) < $Slic3r::small_perimeter_area;
|
||||||
}
|
}
|
||||||
|
|
||||||
# add thin walls as perimeters
|
# add thin walls as perimeters
|
||||||
|
Loading…
x
Reference in New Issue
Block a user