Notes about integration with Pronterface

This commit is contained in:
Alessandro Ranellucci 2011-12-13 21:51:07 +01:00
parent 869cb48c1a
commit cf33ec0a5c
2 changed files with 10 additions and 2 deletions

View File

@ -181,5 +181,14 @@ If you want to slice a file overriding an option contained in your preset file:
slic3r.pl --load config.ini --layer-height 0.25 file.stl
## How can I integrate Slic3r with Pronterface?
Put this into *slicecommand*:
slic3r.pl $s --load config.ini --output $o
And this into *sliceoptscommand*:
slic3r.pl $s --load config.ini
Replace `slic3r.pl` with the full path to the slic3r executable.

View File

@ -21,7 +21,6 @@ my %cli_options = ();
'debug' => \$Slic3r::debug,
'o|output=s' => \$opt{output},
'close-after-slicing' => \$opt{close_after_slicing},
'save=s' => \$opt{save},
'load=s' => \$opt{load},