mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 11:53:48 +00:00
Simplify gaps fills to avoid some shaking
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user