mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-05-16 19:06:49 +08:00
Increase the flow rate for support material
This commit is contained in:
parent
fc0fa0c738
commit
8d851c24a9
@ -118,7 +118,10 @@ sub extrude_path {
|
||||
$gcode .= $self->unretract if $self->retracted;
|
||||
|
||||
# calculate extrusion length per distance unit
|
||||
my $s = $path->flow_spacing || $Slic3r::flow_spacing;
|
||||
my $s = $path->flow_spacing
|
||||
|| $path->role eq 'support-material'
|
||||
? ($Slic3r::flow_spacing * 1.5)
|
||||
: $Slic3r::flow_spacing;
|
||||
my $h = $path->depth_layers * $self->layer->height;
|
||||
my $w = ($s - $Slic3r::min_flow_spacing * $Slic3r::overlap_factor) / (1 - $Slic3r::overlap_factor);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user