mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-11 22:38:58 +08:00
Simplify gaps fills to avoid some shaking
This commit is contained in:
parent
a5a0f32e19
commit
b625c3b2b2
@ -278,7 +278,11 @@ sub make_perimeters {
|
||||
my $params = shift @paths;
|
||||
|
||||
push @{ $self->thin_fills },
|
||||
map Slic3r::ExtrusionPath->pack(
|
||||
map {
|
||||
$_->polyline->simplify($flow->scaled_width / 3);
|
||||
$_->pack;
|
||||
}
|
||||
map Slic3r::ExtrusionPath->new(
|
||||
polyline => Slic3r::Polyline->new(@$_),
|
||||
role => EXTR_ROLE_SOLIDFILL,
|
||||
height => $self->height,
|
||||
|
Loading…
x
Reference in New Issue
Block a user