mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-31 12:41:20 -06:00
Simplify gaps fills to avoid some shaking
This commit is contained in:
parent
a5a0f32e19
commit
b625c3b2b2
1 changed files with 5 additions and 1 deletions
|
|
@ -278,7 +278,11 @@ sub make_perimeters {
|
||||||
my $params = shift @paths;
|
my $params = shift @paths;
|
||||||
|
|
||||||
push @{ $self->thin_fills },
|
push @{ $self->thin_fills },
|
||||||
map Slic3r::ExtrusionPath->pack(
|
map {
|
||||||
|
$_->polyline->simplify($flow->scaled_width / 3);
|
||||||
|
$_->pack;
|
||||||
|
}
|
||||||
|
map Slic3r::ExtrusionPath->new(
|
||||||
polyline => Slic3r::Polyline->new(@$_),
|
polyline => Slic3r::Polyline->new(@$_),
|
||||||
role => EXTR_ROLE_SOLIDFILL,
|
role => EXTR_ROLE_SOLIDFILL,
|
||||||
height => $self->height,
|
height => $self->height,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue