mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-30 19:12:01 +08:00
Ignore too thin extrusions when computing the volumetric speed, otherwise very slow speeds would be generated. #3868
This commit is contained in:
parent
b762b38af0
commit
1d97698270
@ -403,8 +403,8 @@ sub process_layer {
|
|||||||
push @mm3_per_mm, $layer->support_interface_fills->min_mm3_per_mm;
|
push @mm3_per_mm, $layer->support_interface_fills->min_mm3_per_mm;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
# filter out 0-width segments
|
# ignore too thin segments
|
||||||
@mm3_per_mm = grep $_ > 0.000001, @mm3_per_mm;
|
@mm3_per_mm = grep $_ > 0.01, @mm3_per_mm;
|
||||||
if (@mm3_per_mm) {
|
if (@mm3_per_mm) {
|
||||||
my $min_mm3_per_mm = min(@mm3_per_mm);
|
my $min_mm3_per_mm = min(@mm3_per_mm);
|
||||||
# In order to honor max_print_speed we need to find a target volumetric
|
# In order to honor max_print_speed we need to find a target volumetric
|
||||||
|
Loading…
x
Reference in New Issue
Block a user