mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-14 18:27:58 -06:00
New --top-solid-infill-speed option. Also, --solid-infill-speed and --small-perimeter-speed can be expressed as ratios too. #174 #151
This commit is contained in:
parent
2ccb443c2f
commit
fbfbfac2b6
8 changed files with 59 additions and 33 deletions
|
@ -167,9 +167,11 @@ sub make_fill {
|
|||
paths => [
|
||||
map Slic3r::ExtrusionPath->new(
|
||||
polyline => Slic3r::Polyline->new(@$_),
|
||||
role => ($is_bridge ? EXTR_ROLE_BRIDGE
|
||||
: $is_solid ? EXTR_ROLE_SOLIDFILL
|
||||
: EXTR_ROLE_FILL),
|
||||
role => ($is_bridge
|
||||
? EXTR_ROLE_BRIDGE
|
||||
: $is_solid
|
||||
? ($surface->surface_type == S_TYPE_TOP ? EXTR_ROLE_TOPSOLIDFILL : EXTR_ROLE_SOLIDFILL)
|
||||
: EXTR_ROLE_FILL),
|
||||
depth_layers => $surface->depth_layers,
|
||||
flow_spacing => $params->{flow_spacing},
|
||||
), @paths,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue