Simplify gaps fills to avoid some shaking

This commit is contained in:
Alessandro Ranellucci 2012-11-16 10:47:42 +01:00
parent a5a0f32e19
commit b625c3b2b2

View file

@ -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,