mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-05 04:54:08 -06:00
Lower 0.5*w to 0.4*w to fill finer gaps. #1057
This commit is contained in:
parent
34b192fde3
commit
7ec6c6ffba
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue