Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-09-14 12:16:54 +0300
committerbubnikv <bubnikv@gmail.com>2018-09-14 12:16:54 +0300
commitbb7f504296c99fdc35197dedda85d38e6ef387f0 (patch)
tree4a354f0bb2a953dc186a2d339f386acf843dfe06 /slic3r.pl
parent2c9dc4dbbf86a9c6e0b85ac1c29233ff040a2299 (diff)
Removed "Slice to SVG" and "Quick Slice"
Diffstat (limited to 'slic3r.pl')
-rwxr-xr-xslic3r.pl6
1 files changed, 1 insertions, 5 deletions
diff --git a/slic3r.pl b/slic3r.pl
index 7be053cc8..4bf687cf5 100755
--- a/slic3r.pl
+++ b/slic3r.pl
@@ -42,7 +42,6 @@ my %cli_options = ();
'no-plater' => \$opt{no_plater},
'gui-mode=s' => \$opt{obsolete_ignore_this_option_gui_mode},
'datadir=s' => \$opt{datadir},
- 'export-svg' => \$opt{export_svg},
'export-png' => \$opt{export_png},
'merge|m' => \$opt{merge},
'repair' => \$opt{repair},
@@ -212,9 +211,7 @@ if (@ARGV) { # slicing from command line
# Do the apply_config once again to validate the layer height profiles at all the newly added PrintObjects.
$sprint->apply_config($config);
- if ($opt{export_svg}) {
- $sprint->export_svg;
- } elsif ($opt{export_png}) {
+ if ($opt{export_png}) {
$sprint->export_png;
} else {
my $t0 = [gettimeofday];
@@ -280,7 +277,6 @@ Usage: slic3r.pl [ OPTIONS ] [ file.stl ] [ file2.stl ] ...
and [input_filename] (default: $config->{output_filename_format})
--post-process Generated G-code will be processed with the supplied script;
call this more than once to process through multiple scripts.
- --export-svg Export a SVG file containing slices instead of G-code.
--export-png Export zipped PNG files containing slices instead of G-code.
-m, --merge If multiple files are supplied, they will be composed into a single
print rather than processed individually.