1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-11 08:04:25 +00:00

Lower 0.5*w to 0.4*w to fill finer gaps. #1057

This commit is contained in:
Alessandro Ranellucci
2013-03-19 16:07:52 +01:00
parent 34b192fde3
commit 7ec6c6ffba
+1 -1
View File
@@ -290,7 +290,7 @@ sub make_perimeters {
)};
my $w = $self->perimeter_flow->width;
my @widths = (1.5 * $w, $w, 0.5 * $w); # worth trying 0.2 too?
my @widths = (1.5 * $w, $w, 0.4 * $w); # worth trying 0.2 too?
foreach my $width (@widths) {
my $flow = $self->perimeter_flow->clone(width => $width);