2011-09-01 19:06:28 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use FindBin;
|
|
|
|
use lib "$FindBin::Bin/lib";
|
|
|
|
}
|
|
|
|
|
2012-01-27 14:29:46 +00:00
|
|
|
use Getopt::Long qw(:config no_auto_abbrev);
|
2012-07-15 16:37:00 +00:00
|
|
|
use List::Util qw(first);
|
2011-09-01 19:06:28 +00:00
|
|
|
use Slic3r;
|
2011-11-28 09:20:12 +00:00
|
|
|
$|++;
|
2011-09-05 11:33:09 +00:00
|
|
|
|
2012-08-01 14:17:44 +00:00
|
|
|
our %opt = ();
|
2011-12-01 21:03:13 +00:00
|
|
|
my %cli_options = ();
|
|
|
|
{
|
|
|
|
my %options = (
|
|
|
|
'help' => sub { usage() },
|
2012-06-16 15:16:50 +00:00
|
|
|
'version' => sub { print "$Slic3r::VERSION\n"; exit 0 },
|
2011-12-01 21:03:13 +00:00
|
|
|
|
|
|
|
'debug' => \$Slic3r::debug,
|
2012-04-30 18:59:14 +00:00
|
|
|
'gui' => \$opt{gui},
|
2011-12-26 16:20:26 +00:00
|
|
|
'o|output=s' => \$opt{output},
|
2011-12-01 21:03:13 +00:00
|
|
|
|
|
|
|
'save=s' => \$opt{save},
|
2012-01-23 10:57:03 +00:00
|
|
|
'load=s@' => \$opt{load},
|
2011-12-20 16:44:19 +00:00
|
|
|
'ignore-nonexistent-config' => \$opt{ignore_nonexistent_config},
|
2012-08-25 17:06:14 +00:00
|
|
|
'datadir=s' => \$opt{datadir},
|
2012-03-26 15:57:54 +00:00
|
|
|
'export-svg' => \$opt{export_svg},
|
2012-04-29 10:52:55 +00:00
|
|
|
'merge|m' => \$opt{merge},
|
2011-12-01 21:03:13 +00:00
|
|
|
);
|
2012-07-27 19:13:03 +00:00
|
|
|
foreach my $opt_key (keys %{$Slic3r::Config::Options}) {
|
|
|
|
my $cli = $Slic3r::Config::Options->{$opt_key}->{cli} or next;
|
|
|
|
# allow both the dash-separated option name and the full opt_key
|
|
|
|
$options{ "$opt_key|$cli" } = \$cli_options{$opt_key};
|
2011-12-01 21:03:13 +00:00
|
|
|
}
|
2011-09-26 10:07:29 +00:00
|
|
|
|
2011-12-01 21:03:13 +00:00
|
|
|
GetOptions(%options) or usage(1);
|
|
|
|
}
|
2011-09-05 11:33:09 +00:00
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
# process command line options
|
|
|
|
my $cli_config = Slic3r::Config->new_from_cli(%cli_options);
|
|
|
|
|
|
|
|
# load configuration files
|
|
|
|
my @external_configs = ();
|
2011-10-05 16:13:47 +00:00
|
|
|
if ($opt{load}) {
|
2012-01-23 10:57:03 +00:00
|
|
|
foreach my $configfile (@{$opt{load}}) {
|
|
|
|
if (-e $configfile) {
|
2012-07-27 19:13:03 +00:00
|
|
|
push @external_configs, Slic3r::Config->load($configfile);
|
2012-01-23 10:57:03 +00:00
|
|
|
} elsif (-e "$FindBin::Bin/$configfile") {
|
|
|
|
printf STDERR "Loading $FindBin::Bin/$configfile\n";
|
2012-07-27 19:13:03 +00:00
|
|
|
push @external_configs, Slic3r::Config->load("$FindBin::Bin/$configfile");
|
2012-01-23 10:57:03 +00:00
|
|
|
} else {
|
|
|
|
$opt{ignore_nonexistent_config} or die "Cannot find specified configuration file ($configfile).\n";
|
|
|
|
}
|
2011-12-20 16:44:19 +00:00
|
|
|
}
|
2011-10-05 16:13:47 +00:00
|
|
|
}
|
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
# merge configuration
|
|
|
|
my $config = Slic3r::Config->new_from_defaults;
|
|
|
|
$config->apply($_) for @external_configs, $cli_config;
|
|
|
|
|
|
|
|
# save configuration
|
|
|
|
if ($opt{save}) {
|
|
|
|
$config->validate;
|
|
|
|
$config->save($opt{save});
|
|
|
|
}
|
2011-12-01 21:03:13 +00:00
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
# launch GUI
|
2012-07-15 16:37:00 +00:00
|
|
|
my $gui;
|
|
|
|
if (!@ARGV && !$opt{save} && eval "require Slic3r::GUI; 1") {
|
2012-08-25 17:06:14 +00:00
|
|
|
{
|
|
|
|
no warnings 'once';
|
|
|
|
$Slic3r::GUI::datadir = $opt{datadir} if $opt{datadir};
|
|
|
|
}
|
2012-09-12 13:40:57 +00:00
|
|
|
$gui = Slic3r::GUI->new;
|
2012-08-08 22:59:41 +00:00
|
|
|
$gui->{skeinpanel}->load_config_file($_) for @{$opt{load}};
|
2012-07-27 19:13:03 +00:00
|
|
|
$gui->{skeinpanel}->load_config($cli_config);
|
2012-07-15 15:54:57 +00:00
|
|
|
$gui->MainLoop;
|
2011-10-03 09:55:32 +00:00
|
|
|
exit;
|
2011-09-05 11:33:09 +00:00
|
|
|
}
|
2012-07-27 19:13:03 +00:00
|
|
|
die $@ if $@ && $opt{gui};
|
2011-09-05 11:33:09 +00:00
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
if (@ARGV) { # slicing from command line
|
|
|
|
$config->validate;
|
|
|
|
|
2012-04-29 10:51:20 +00:00
|
|
|
while (my $input_file = shift @ARGV) {
|
2012-07-27 19:13:03 +00:00
|
|
|
my $print = Slic3r::Print->new(config => $config);
|
2012-09-22 17:04:36 +00:00
|
|
|
$print->add_model(Slic3r::Model->read_from_file($input_file));
|
2012-04-30 12:56:01 +00:00
|
|
|
if ($opt{merge}) {
|
2012-09-22 17:04:36 +00:00
|
|
|
$print->add_model(Slic3r::Model->read_from_file($_)) for splice @ARGV, 0;
|
2012-04-30 12:56:01 +00:00
|
|
|
}
|
|
|
|
$print->duplicate;
|
2012-04-30 21:28:32 +00:00
|
|
|
$print->arrange_objects if @{$print->objects} > 1;
|
2012-05-23 09:47:52 +00:00
|
|
|
$print->validate;
|
2012-04-30 12:56:01 +00:00
|
|
|
my %params = (
|
2012-02-21 16:26:54 +00:00
|
|
|
output_file => $opt{output},
|
|
|
|
status_cb => sub {
|
|
|
|
my ($percent, $message) = @_;
|
2012-08-22 17:37:45 +00:00
|
|
|
printf "=> %s\n", $message;
|
2012-02-21 16:26:54 +00:00
|
|
|
},
|
|
|
|
);
|
2012-03-26 15:57:54 +00:00
|
|
|
if ($opt{export_svg}) {
|
2012-04-30 12:56:01 +00:00
|
|
|
$print->export_svg(%params);
|
2012-03-26 15:57:54 +00:00
|
|
|
} else {
|
2012-04-30 12:56:01 +00:00
|
|
|
$print->export_gcode(%params);
|
2012-03-26 15:57:54 +00:00
|
|
|
}
|
2012-02-21 16:26:54 +00:00
|
|
|
}
|
2011-10-05 16:13:47 +00:00
|
|
|
} else {
|
|
|
|
usage(1) unless $opt{save};
|
2011-09-05 11:33:09 +00:00
|
|
|
}
|
2011-09-02 19:10:20 +00:00
|
|
|
|
2011-09-05 11:33:09 +00:00
|
|
|
sub usage {
|
|
|
|
my ($exit_code) = @_;
|
|
|
|
|
2012-07-27 19:13:03 +00:00
|
|
|
my $config = Slic3r::Config->new_from_defaults;
|
|
|
|
|
2012-04-10 14:26:56 +00:00
|
|
|
my $j = '';
|
|
|
|
if ($Slic3r::have_threads) {
|
|
|
|
$j = <<"EOF";
|
2012-07-27 19:13:03 +00:00
|
|
|
-j, --threads <num> Number of threads to use (1+, default: $config->{threads})
|
2012-04-10 14:26:56 +00:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2011-09-05 11:33:09 +00:00
|
|
|
print <<"EOF";
|
2011-11-14 11:15:32 +00:00
|
|
|
Slic3r $Slic3r::VERSION is a STL-to-GCODE translator for RepRap 3D printers
|
2011-10-03 14:45:34 +00:00
|
|
|
written by Alessandro Ranellucci <aar\@cpan.org> - http://slic3r.org/
|
2011-09-26 14:25:26 +00:00
|
|
|
|
2011-09-05 11:33:09 +00:00
|
|
|
Usage: slic3r.pl [ OPTIONS ] file.stl
|
2011-09-03 18:47:38 +00:00
|
|
|
|
2011-09-05 11:33:09 +00:00
|
|
|
--help Output this usage screen and exit
|
2012-06-16 15:16:50 +00:00
|
|
|
--version Output the version of Slic3r and exit
|
2011-10-05 16:13:47 +00:00
|
|
|
--save <file> Save configuration to the specified file
|
2012-01-23 10:57:03 +00:00
|
|
|
--load <file> Load configuration from the specified file. It can be used
|
|
|
|
more than once to load options from multiple files.
|
2011-12-26 16:20:26 +00:00
|
|
|
-o, --output <file> File to output gcode to (by default, the file will be saved
|
|
|
|
into the same directory as the input file using the
|
|
|
|
--output-filename-format to generate the filename)
|
2012-04-10 14:26:56 +00:00
|
|
|
$j
|
2011-12-26 09:20:45 +00:00
|
|
|
Output options:
|
2012-02-05 19:59:05 +00:00
|
|
|
--output-filename-format
|
2011-12-26 16:20:26 +00:00
|
|
|
Output file name format; all config options enclosed in brackets
|
|
|
|
will be replaced by their values, as well as [input_filename_base]
|
2012-07-27 19:13:03 +00:00
|
|
|
and [input_filename] (default: $config->{output_filename_format})
|
2012-02-20 11:50:05 +00:00
|
|
|
--post-process Generated G-code will be processed with the supplied script;
|
|
|
|
call this more than once to process through multiple scripts.
|
2012-03-26 15:57:54 +00:00
|
|
|
--export-svg Export a SVG file containing slices instead of G-code.
|
2012-04-30 12:56:01 +00:00
|
|
|
-m, --merge If multiple files are supplied, they will be composed into a single
|
2012-04-29 10:51:20 +00:00
|
|
|
print rather than processed individually.
|
2011-12-26 09:20:45 +00:00
|
|
|
|
2011-09-06 09:10:12 +00:00
|
|
|
Printer options:
|
2012-07-27 19:13:03 +00:00
|
|
|
--nozzle-diameter Diameter of nozzle in mm (default: $config->{nozzle_diameter}->[0])
|
2012-02-18 21:36:13 +00:00
|
|
|
--print-center Coordinates in mm of the point to center the print around
|
2012-07-27 19:13:03 +00:00
|
|
|
(default: $config->{print_center}->[0],$config->{print_center}->[1])
|
2011-09-26 13:59:03 +00:00
|
|
|
--z-offset Additional height in mm to add to vertical coordinates
|
2012-07-27 19:13:03 +00:00
|
|
|
(+/-, default: $config->{z_offset})
|
2012-02-20 10:44:30 +00:00
|
|
|
--gcode-flavor The type of G-code to generate (reprap/teacup/makerbot/mach3/no-extrusion,
|
2012-07-27 19:13:03 +00:00
|
|
|
default: $config->{gcode_flavor})
|
2012-03-03 21:25:56 +00:00
|
|
|
--use-relative-e-distances Enable this to get relative E values
|
2011-10-20 16:11:59 +00:00
|
|
|
--gcode-arcs Use G2/G3 commands for native arcs (experimental, not supported
|
|
|
|
by all firmwares)
|
2011-12-14 18:49:21 +00:00
|
|
|
--g0 Use G0 commands for retraction (experimental, not supported by all
|
2011-11-14 11:15:32 +00:00
|
|
|
firmwares)
|
2012-03-26 20:33:43 +00:00
|
|
|
--gcode-comments Make G-code verbose by adding comments (default: no)
|
2012-12-05 16:57:35 +00:00
|
|
|
--vibration-limit Limit the frequency of moves on X and Y axes (Hz, set zero to disable;
|
|
|
|
default: $config->{vibration_limit})
|
2011-09-06 09:10:12 +00:00
|
|
|
|
|
|
|
Filament options:
|
2012-07-27 19:13:03 +00:00
|
|
|
--filament-diameter Diameter in mm of your raw filament (default: $config->{filament_diameter}->[0])
|
2011-11-25 10:15:20 +00:00
|
|
|
--extrusion-multiplier
|
2011-11-28 17:37:53 +00:00
|
|
|
Change this to alter the amount of plastic extruded. There should be
|
|
|
|
very little need to change this value, which is only useful to
|
2012-07-27 19:13:03 +00:00
|
|
|
compensate for filament packing (default: $config->{extrusion_multiplier}->[0])
|
|
|
|
--temperature Extrusion temperature in degree Celsius, set 0 to disable (default: $config->{temperature}->[0])
|
2012-02-26 13:54:38 +00:00
|
|
|
--first-layer-temperature Extrusion temperature for the first layer, in degree Celsius,
|
|
|
|
set 0 to disable (default: same as --temperature)
|
2012-07-27 19:13:03 +00:00
|
|
|
--bed-temperature Heated bed temperature in degree Celsius, set 0 to disable (default: $config->{bed_temperature})
|
2012-03-03 22:14:40 +00:00
|
|
|
--first-layer-bed-temperature Heated bed temperature for the first layer, in degree Celsius,
|
|
|
|
set 0 to disable (default: same as --bed-temperature)
|
2011-09-06 09:10:12 +00:00
|
|
|
|
|
|
|
Speed options:
|
2012-07-27 19:13:03 +00:00
|
|
|
--travel-speed Speed of non-print moves in mm/s (default: $config->{travel_speed})
|
|
|
|
--perimeter-speed Speed of print moves for perimeters in mm/s (default: $config->{perimeter_speed})
|
2011-12-04 19:50:03 +00:00
|
|
|
--small-perimeter-speed
|
2012-06-06 17:57:16 +00:00
|
|
|
Speed of print moves for small perimeters in mm/s or % over perimeter speed
|
2012-07-27 19:13:03 +00:00
|
|
|
(default: $config->{small_perimeter_speed})
|
2012-06-27 17:37:34 +00:00
|
|
|
--external-perimeter-speed
|
|
|
|
Speed of print moves for the external perimeter in mm/s or % over perimeter speed
|
2012-07-27 19:13:03 +00:00
|
|
|
(default: $config->{external_perimeter_speed})
|
|
|
|
--infill-speed Speed of print moves in mm/s (default: $config->{infill_speed})
|
2012-06-06 17:57:16 +00:00
|
|
|
--solid-infill-speed Speed of print moves for solid surfaces in mm/s or % over infill speed
|
2012-07-27 19:13:03 +00:00
|
|
|
(default: $config->{solid_infill_speed})
|
2012-06-06 17:57:16 +00:00
|
|
|
--top-solid-infill-speed Speed of print moves for top surfaces in mm/s or % over solid infill speed
|
2012-07-27 19:13:03 +00:00
|
|
|
(default: $config->{top_solid_infill_speed})
|
2012-11-23 16:20:26 +00:00
|
|
|
--support-material-speed
|
|
|
|
Speed of support material print moves in mm/s (default: $config->{support_material_speed})
|
2012-07-27 19:13:03 +00:00
|
|
|
--bridge-speed Speed of bridge print moves in mm/s (default: $config->{bridge_speed})
|
2012-11-23 10:25:02 +00:00
|
|
|
--gap-fill-speed Speed of gap fill print moves in mm/s (default: $config->{gap_fill_speed})
|
2012-06-06 13:52:21 +00:00
|
|
|
--first-layer-speed Speed of print moves for bottom layer, expressed either as an absolute
|
2012-07-27 19:13:03 +00:00
|
|
|
value or as a percentage over normal speeds (default: $config->{first_layer_speed})
|
2011-09-06 09:10:12 +00:00
|
|
|
|
|
|
|
Accuracy options:
|
2012-07-27 19:13:03 +00:00
|
|
|
--layer-height Layer height in mm (default: $config->{layer_height})
|
|
|
|
--first-layer-height Layer height for first layer (mm or %, default: $config->{first_layer_height})
|
2011-10-18 13:57:53 +00:00
|
|
|
--infill-every-layers
|
2012-07-27 19:13:03 +00:00
|
|
|
Infill every N layers (default: $config->{infill_every_layers})
|
2012-09-28 13:46:29 +00:00
|
|
|
--solid-infill-every-layers
|
|
|
|
Force a solid layer every N layers (default: $config->{solid_infill_every_layers})
|
2011-09-06 09:10:12 +00:00
|
|
|
|
|
|
|
Print options:
|
2012-07-27 19:13:03 +00:00
|
|
|
--perimeters Number of perimeters/horizontal skins (range: 0+, default: $config->{perimeters})
|
2012-10-25 10:39:22 +00:00
|
|
|
--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
|
2012-07-27 19:13:03 +00:00
|
|
|
--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})
|
|
|
|
--solid-fill-pattern Pattern to use to fill solid layers (default: $config->{solid_fill_pattern})
|
2012-03-26 10:14:15 +00:00
|
|
|
--start-gcode Load initial G-code from the supplied file. This will overwrite
|
2011-10-14 14:24:55 +00:00
|
|
|
the default command (home all axes [G28]).
|
2012-03-26 10:14:15 +00:00
|
|
|
--end-gcode Load final G-code from the supplied file. This will overwrite
|
2011-10-14 14:24:55 +00:00
|
|
|
the default commands (turn off temperature [M104 S0],
|
|
|
|
home X axis [G28 X], disable motors [M84]).
|
2012-03-26 10:14:15 +00:00
|
|
|
--layer-gcode Load layer-change G-code from the supplied file (default: nothing).
|
2012-12-23 15:29:08 +00:00
|
|
|
--toolchange-gcode Load tool-change G-code from the supplied file (default: nothing).
|
2012-06-23 15:10:30 +00:00
|
|
|
--extra-perimeters Add more perimeters when needed (default: yes)
|
2012-05-19 20:36:29 +00:00
|
|
|
--randomize-start Randomize starting point across layers (default: yes)
|
2012-08-25 14:30:11 +00:00
|
|
|
--only-retract-when-crossing-perimeters
|
|
|
|
Disable retraction when travelling between infill paths inside the same island.
|
|
|
|
(default: no)
|
2012-08-24 17:38:36 +00:00
|
|
|
--solid-infill-below-area
|
|
|
|
Force solid infill when a region has a smaller area than this threshold
|
|
|
|
(mm^2, default: $config->{solid_infill_below_area})
|
2011-09-06 09:10:12 +00:00
|
|
|
|
2012-06-23 20:43:23 +00:00
|
|
|
Support material options:
|
|
|
|
--support-material Generate support material for overhangs
|
2012-06-23 21:54:39 +00:00
|
|
|
--support-material-threshold
|
2013-01-02 18:40:48 +00:00
|
|
|
Overhang threshold angle (range: 0-90, set 0 for automatic detection,
|
|
|
|
default: $config->{support_material_threshold})
|
2012-06-23 20:43:23 +00:00
|
|
|
--support-material-pattern
|
2012-07-27 19:13:03 +00:00
|
|
|
Pattern to use for support material (default: $config->{support_material_pattern})
|
2012-06-24 12:39:35 +00:00
|
|
|
--support-material-spacing
|
2012-07-27 19:13:03 +00:00
|
|
|
Spacing between pattern lines (mm, default: $config->{support_material_spacing})
|
2012-06-23 20:43:23 +00:00
|
|
|
--support-material-angle
|
2012-07-27 19:13:03 +00:00
|
|
|
Support material angle in degrees (range: 0-90, default: $config->{support_material_angle})
|
2012-06-23 20:43:23 +00:00
|
|
|
|
2012-02-25 20:01:00 +00:00
|
|
|
Retraction options:
|
2012-08-22 17:11:45 +00:00
|
|
|
--retract-length Length of retraction in mm when pausing extrusion (default: $config->{retract_length}[0])
|
2012-08-07 19:08:56 +00:00
|
|
|
--retract-speed Speed for retraction in mm/s (default: $config->{retract_speed}[0])
|
2011-09-05 16:52:09 +00:00
|
|
|
--retract-restart-extra
|
2011-09-06 09:10:12 +00:00
|
|
|
Additional amount of filament in mm to push after
|
2012-08-07 19:08:56 +00:00
|
|
|
compensating retraction (default: $config->{retract_restart_extra}[0])
|
2011-10-02 07:57:37 +00:00
|
|
|
--retract-before-travel
|
2012-08-07 19:08:56 +00:00
|
|
|
Only retract before travel moves of this length in mm (default: $config->{retract_before_travel}[0])
|
|
|
|
--retract-lift Lift Z by the given distance in mm when retracting (default: $config->{retract_lift}[0])
|
2012-08-22 17:11:45 +00:00
|
|
|
|
|
|
|
Retraction options for multi-extruder setups:
|
|
|
|
--retract-length-toolchange
|
|
|
|
Length of retraction in mm when disabling tool (default: $config->{retract_length}[0])
|
|
|
|
--retract-restart-extra-toolchnage
|
|
|
|
Additional amount of filament in mm to push after
|
|
|
|
switching tool (default: $config->{retract_restart_extra}[0])
|
2011-10-02 07:57:37 +00:00
|
|
|
|
2012-02-25 20:01:00 +00:00
|
|
|
Cooling options:
|
2012-02-25 20:56:36 +00:00
|
|
|
--cooling Enable fan and cooling control
|
2012-07-27 19:13:03 +00:00
|
|
|
--min-fan-speed Minimum fan speed (default: $config->{min_fan_speed}%)
|
|
|
|
--max-fan-speed Maximum fan speed (default: $config->{max_fan_speed}%)
|
|
|
|
--bridge-fan-speed Fan speed to use when bridging (default: $config->{bridge_fan_speed}%)
|
2012-02-25 20:01:00 +00:00
|
|
|
--fan-below-layer-time Enable fan if layer print time is below this approximate number
|
2012-07-27 19:13:03 +00:00
|
|
|
of seconds (default: $config->{fan_below_layer_time})
|
2012-02-25 20:01:00 +00:00
|
|
|
--slowdown-below-layer-time Slow down if layer print time is below this approximate number
|
2012-07-27 19:13:03 +00:00
|
|
|
of seconds (default: $config->{slowdown_below_layer_time})
|
|
|
|
--min-print-speed Minimum print speed (mm/s, default: $config->{min_print_speed})
|
|
|
|
--disable-fan-first-layers Disable fan for the first N layers (default: $config->{disable_fan_first_layers})
|
2012-03-03 21:21:30 +00:00
|
|
|
--fan-always-on Keep fan always on at min fan speed, even for layers that don't need
|
|
|
|
cooling
|
2012-02-25 20:01:00 +00:00
|
|
|
|
2011-09-06 09:10:12 +00:00
|
|
|
Skirt options:
|
2012-07-27 19:13:03 +00:00
|
|
|
--skirts Number of skirts to draw (0+, default: $config->{skirts})
|
2011-09-05 18:00:59 +00:00
|
|
|
--skirt-distance Distance in mm between innermost skirt and object
|
2012-07-27 19:13:03 +00:00
|
|
|
(default: $config->{skirt_distance})
|
|
|
|
--skirt-height Height of skirts to draw (expressed in layers, 0+, default: $config->{skirt_height})
|
2012-10-29 10:17:57 +00:00
|
|
|
--min-skirt-length Generate no less than the number of loops required to consume this length
|
|
|
|
of filament on the first layer, for each extruder (mm, 0+, default: $config->{min_skirt_length})
|
2012-06-23 20:27:59 +00:00
|
|
|
--brim-width Width of the brim that will get added to each object to help adhesion
|
2012-07-27 19:13:03 +00:00
|
|
|
(mm, default: $config->{brim_width})
|
2011-09-26 10:07:29 +00:00
|
|
|
|
|
|
|
Transform options:
|
2012-07-27 19:13:03 +00:00
|
|
|
--scale Factor for scaling input object (default: $config->{scale})
|
|
|
|
--rotate Rotation angle in degrees (0-360, default: $config->{rotate})
|
|
|
|
--duplicate Number of items with auto-arrange (1+, default: $config->{duplicate})
|
|
|
|
--bed-size Bed size, only used for auto-arrange (mm, default: $config->{bed_size}->[0],$config->{bed_size}->[1])
|
|
|
|
--duplicate-grid Number of items with grid arrangement (default: $config->{duplicate_grid}->[0],$config->{duplicate_grid}->[1])
|
|
|
|
--duplicate-distance Distance in mm between copies (default: $config->{duplicate_distance})
|
2012-05-23 09:47:52 +00:00
|
|
|
|
|
|
|
Sequential printing options:
|
|
|
|
--complete-objects When printing multiple objects and/or copies, complete each one before
|
|
|
|
starting the next one; watch out for extruder collisions (default: no)
|
|
|
|
--extruder-clearance-radius Radius in mm above which extruder won't collide with anything
|
2012-07-27 19:13:03 +00:00
|
|
|
(default: $config->{extruder_clearance_radius})
|
2012-05-23 09:47:52 +00:00
|
|
|
--extruder-clearance-height Maximum vertical extruder depth; i.e. vertical distance from
|
2012-07-27 19:13:03 +00:00
|
|
|
extruder tip and carriage bottom (default: $config->{extruder_clearance_height})
|
2012-05-23 09:47:52 +00:00
|
|
|
|
2012-02-05 19:55:17 +00:00
|
|
|
Miscellaneous options:
|
|
|
|
--notes Notes to be added as comments to the output file
|
2011-12-07 18:33:59 +00:00
|
|
|
|
2012-04-11 13:58:09 +00:00
|
|
|
Flow options (advanced):
|
2012-06-06 13:23:34 +00:00
|
|
|
--extrusion-width Set extrusion width manually; it accepts either an absolute value in mm
|
|
|
|
(like 0.65) or a percentage over layer height (like 200%)
|
2012-06-06 15:29:12 +00:00
|
|
|
--first-layer-extrusion-width
|
|
|
|
Set a different extrusion width for first layer
|
2012-06-06 16:05:03 +00:00
|
|
|
--perimeters-extrusion-width
|
|
|
|
Set a different extrusion width for perimeters
|
|
|
|
--infill-extrusion-width
|
|
|
|
Set a different extrusion width for infill
|
2012-06-28 14:33:07 +00:00
|
|
|
--support-material-extrusion-width
|
|
|
|
Set a different extrusion width for support material
|
2012-07-27 19:13:03 +00:00
|
|
|
--bridge-flow-ratio Multiplier for extrusion when bridging (> 0, default: $config->{bridge_flow_ratio})
|
2012-06-28 14:48:56 +00:00
|
|
|
|
|
|
|
Multiple extruder options:
|
2012-08-07 19:39:45 +00:00
|
|
|
--extruder-offset Offset of each extruder, if firmware doesn't handle the displacement
|
|
|
|
(can be specified multiple times, default: 0x0)
|
2012-06-28 14:48:56 +00:00
|
|
|
--perimeters-extruder
|
|
|
|
Extruder to use for perimeters (1+, default: 1)
|
|
|
|
--infill-extruder Extruder to use for infill (1+, default: 1)
|
|
|
|
--support-material-extruder
|
|
|
|
Extruder to use for support material (1+, default: 1)
|
2011-09-05 11:33:09 +00:00
|
|
|
|
|
|
|
EOF
|
2011-09-26 13:52:41 +00:00
|
|
|
exit ($exit_code || 0);
|
2011-09-05 11:33:09 +00:00
|
|
|
}
|
2011-09-01 19:06:28 +00:00
|
|
|
|
|
|
|
__END__
|