diff --git a/README.markdown b/README.markdown index 8bcc69e27..18153e29f 100644 --- a/README.markdown +++ b/README.markdown @@ -82,6 +82,7 @@ The author is Alessandro Ranellucci (me). --help Output this usage screen and exit --save Save configuration to the specified file --load Load configuration from the specified file + -o, --output File to output gcode to (default: .gcode) Printer options: @@ -98,6 +99,7 @@ The author is Alessandro Ranellucci (me). --filament-packing-density Ratio of the extruded volume over volume pushed into the extruder (default: 0.85) + --temperature Extrusion temperature (default: 200) Speed options: --print-feed-rate Speed of print moves in mm/sec (default: 60) @@ -118,7 +120,6 @@ The author is Alessandro Ranellucci (me). (range: 1+, default: 3) --fill-density Infill density (range: 0-1, default: 0.4) --fill-angle Infill angle in degrees (range: 0-90, default: 0) - --temperature Extrusion temperature (default: 200) Retraction options: --retract-length Length of retraction in mm when pausing extrusion @@ -134,7 +135,6 @@ The author is Alessandro Ranellucci (me). --skirts Number of skirts to draw (default: 1) --skirt-distance Distance in mm between innermost skirt and object (default: 6) - -o, --output File to output gcode to (default: .gcode) Transform options: --scale Factor for scaling input object (default: 1) diff --git a/slic3r.pl b/slic3r.pl index 8401a5856..fc74423fa 100755 --- a/slic3r.pl +++ b/slic3r.pl @@ -113,6 +113,7 @@ Usage: slic3r.pl [ OPTIONS ] file.stl --help Output this usage screen and exit --save Save configuration to the specified file --load Load configuration from the specified file + -o, --output File to output gcode to (default: .gcode) Printer options: --nozzle-diameter Diameter of nozzle in mm (default: $Slic3r::nozzle_diameter) @@ -167,7 +168,6 @@ Usage: slic3r.pl [ OPTIONS ] file.stl --skirts Number of skirts to draw (default: $Slic3r::skirts) --skirt-distance Distance in mm between innermost skirt and object (default: $Slic3r::skirt_distance) - -o, --output File to output gcode to (default: .gcode) Transform options: --scale Factor for scaling input object (default: $Slic3r::scale)