mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 19:33:47 +00:00
Multiple solid layers near external surfaces
This commit is contained in:
@@ -39,6 +39,7 @@ GetOptions(
|
||||
|
||||
# print options
|
||||
'perimeters=i' => \$Slic3r::perimeter_offsets,
|
||||
'solid-layers=i' => \$Slic3r::solid_layers,
|
||||
'fill-density=f' => \$Slic3r::fill_density,
|
||||
'temperature=i' => \$Slic3r::temperature,
|
||||
|
||||
@@ -75,6 +76,10 @@ GetOptions(
|
||||
die "Invalid value for --perimeters\n"
|
||||
if $Slic3r::perimeter_offsets < 1;
|
||||
|
||||
# --solid-layers
|
||||
die "Invalid value for --solid-layers\n"
|
||||
if $Slic3r::solid_layers < 1;
|
||||
|
||||
# --print-center
|
||||
die "Invalid value for --print-center\n"
|
||||
if !ref $Slic3r::print_center
|
||||
@@ -143,6 +148,8 @@ Usage: slic3r.pl [ OPTIONS ] file.stl
|
||||
Print options:
|
||||
--perimeters Number of perimeters/horizontal skins (range: 1+,
|
||||
default: $Slic3r::perimeter_offsets)
|
||||
--solid-layers Number of solid layers to do for top/bottom surfaces
|
||||
(range: 1+, default: $Slic3r::solid_layers)
|
||||
--fill-density Infill density (range: 0-1, default: $Slic3r::fill_density)
|
||||
--temperature Extrusion temperature (default: $Slic3r::temperature)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user