mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-21 20:18:17 +08:00
Lower 0.5*w to 0.4*w to fill finer gaps. #1057
This commit is contained in:
parent
34b192fde3
commit
7ec6c6ffba
@ -290,7 +290,7 @@ sub make_perimeters {
|
|||||||
)};
|
)};
|
||||||
|
|
||||||
my $w = $self->perimeter_flow->width;
|
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) {
|
foreach my $width (@widths) {
|
||||||
my $flow = $self->perimeter_flow->clone(width => $width);
|
my $flow = $self->perimeter_flow->clone(width => $width);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user