From e2ad22fccae7e56a7a229de802a711774694d9c6 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Thu, 25 Oct 2012 12:39:22 +0200 Subject: [PATCH] Update --help with the new --top-solid-layers and --bottom-solid-layers --- README.markdown | 5 +++-- slic3r.pl | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index 5ca1ac240..21093eeb5 100644 --- a/README.markdown +++ b/README.markdown @@ -158,8 +158,9 @@ The author of the Silk icon set is Mark James. Print options: --perimeters Number of perimeters/horizontal skins (range: 0+, default: 3) - --solid-layers Number of solid layers to do for top/bottom surfaces - (range: 1+, default: 3) + --top-solid-layers Number of solid layers to do for top surfaces (range: 0+, default: 3) + --bottom-solid-layers Number of solid layers to do for bottom surfaces (range: 0+, default: 3) + --solid-layers Shortcut for setting the two options above at once --fill-density Infill density (range: 0-1, default: 0.4) --fill-angle Infill angle in degrees (range: 0-90, default: 45) --fill-pattern Pattern to use to fill non-solid layers (default: rectilinear) diff --git a/slic3r.pl b/slic3r.pl index bcda50571..f0b558133 100755 --- a/slic3r.pl +++ b/slic3r.pl @@ -206,8 +206,9 @@ $j Print options: --perimeters Number of perimeters/horizontal skins (range: 0+, default: $config->{perimeters}) - --solid-layers Number of solid layers to do for top/bottom surfaces - (range: 1+, default: $config->{solid_layers}) + --top-solid-layers Number of solid layers to do for top surfaces (range: 0+, default: $config->{top_solid_layers}) + --bottom-solid-layers Number of solid layers to do for bottom surfaces (range: 0+, default: $config->{bottom_solid_layers}) + --solid-layers Shortcut for setting the two options above at once --fill-density Infill density (range: 0-1, default: $config->{fill_density}) --fill-angle Infill angle in degrees (range: 0-90, default: $config->{fill_angle}) --fill-pattern Pattern to use to fill non-solid layers (default: $config->{fill_pattern})