mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 03:05:53 +08:00
Bugfix: minimum flow for low layer heights was still too low
This commit is contained in:
parent
7412d4a687
commit
038737abe6
@ -39,10 +39,10 @@ sub _build_width {
|
||||
}
|
||||
|
||||
my $min = max(
|
||||
((($self->nozzle_diameter/2) ** 2) / $self->layer_height * 0.8),
|
||||
($volume / $self->layer_height),
|
||||
($self->nozzle_diameter * 1.05),
|
||||
);
|
||||
my $max = $self->nozzle_diameter * 1.6;
|
||||
my $max = $self->nozzle_diameter * 2;
|
||||
$width = $max if $width > $max;
|
||||
$width = $min if $width < $min;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user