diff --git a/README.markdown b/README.markdown index 014892e08..ccbc26f1b 100644 --- a/README.markdown +++ b/README.markdown @@ -94,7 +94,7 @@ The author is Alessandro Ranellucci (me). Printer options: --nozzle-diameter Diameter of nozzle in mm (default: 0.5) - --print-center Coordinates of the point to center the print around + --print-center Coordinates in mm of the point to center the print around (default: 100,100) --use-relative-e-distances Use relative distances for extrusion in GCODE output @@ -114,16 +114,16 @@ The author is Alessandro Ranellucci (me). Change this to alter the amount of plastic extruded. There should be very little need to change this value, which is only useful to compensate for filament packing (default: 1) - --temperature Extrusion temperature, set 0 to disable (default: 200) + --temperature Extrusion temperature in degree Celsius, set 0 to disable (default: 200) Speed options: - --travel-speed Speed of non-print moves in mm/sec (default: 130) - --perimeter-speed Speed of print moves for perimeters in mm/sec (default: 30) + --travel-speed Speed of non-print moves in mm/s (default: 130) + --perimeter-speed Speed of print moves for perimeters in mm/s (default: 30) --small-perimeter-speed - Speed of print moves for small perimeters in mm/sec (default: 30) - --infill-speed Speed of print moves in mm/sec (default: 60) - --solid-infill-speed Speed of print moves for solid surfaces in mm/sec (default: 60) - --bridge-speed Speed of bridge print moves in mm/sec (default: 60) + Speed of print moves for small perimeters in mm/s (default: 30) + --infill-speed Speed of print moves in mm/s (default: 60) + --solid-infill-speed Speed of print moves for solid surfaces in mm/s (default: 60) + --bridge-speed Speed of bridge print moves in mm/s (default: 60) --bottom-layer-speed-ratio Factor to increase/decrease speeds on bottom layer by (default: 0.3) @@ -154,12 +154,12 @@ The author is Alessandro Ranellucci (me). Retraction options: --retract-length Length of retraction in mm when pausing extrusion (default: 1) - --retract-speed Speed for retraction in mm/sec (default: 30) + --retract-speed Speed for retraction in mm/s (default: 30) --retract-restart-extra Additional amount of filament in mm to push after compensating retraction (default: 0) --retract-before-travel - Only retract before travel moves of this length (default: 2) + Only retract before travel moves of this length in mm (default: 2) --retract-lift Lift Z by the given distance in mm when retracting (default: 0) Skirt options: diff --git a/lib/Slic3r.pm b/lib/Slic3r.pm index 69449368b..ad09842f1 100644 --- a/lib/Slic3r.pm +++ b/lib/Slic3r.pm @@ -60,18 +60,18 @@ our $extrusion_multiplier = 1; our $temperature = 200; # speed options -our $travel_speed = 130; # mm/sec -our $perimeter_speed = 30; # mm/sec -our $small_perimeter_speed = 30; # mm/sec -our $infill_speed = 60; # mm/sec -our $solid_infill_speed = 60; # mm/sec -our $bridge_speed = 60; # mm/sec +our $travel_speed = 130; # mm/s +our $perimeter_speed = 30; # mm/s +our $small_perimeter_speed = 30; # mm/s +our $infill_speed = 60; # mm/s +our $solid_infill_speed = 60; # mm/s +our $bridge_speed = 60; # mm/s our $bottom_layer_speed_ratio = 0.3; # acceleration options our $acceleration = 0; -our $perimeter_acceleration = 25; # mm/sec^2 -our $infill_acceleration = 50; # mm/sec^2 +our $perimeter_acceleration = 25; # mm/s^2 +our $infill_acceleration = 50; # mm/s^2 # accuracy options our $resolution = 0.00000001; @@ -105,7 +105,7 @@ END # retraction options our $retract_length = 1; # mm our $retract_restart_extra = 0; # mm -our $retract_speed = 30; # mm/sec +our $retract_speed = 30; # mm/s our $retract_before_travel = 2; # mm our $retract_lift = 0; # mm diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index 9bccc9b88..ce9462ed9 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -140,12 +140,12 @@ our $Options = { type => 'bool', }, 'perimeter_acceleration' => { - label => 'Perimeters (mm/s^2)', + label => 'Perimeters (mm/s²)', cli => 'perimeter-acceleration', type => 'f', }, 'infill_acceleration' => { - label => 'Infill (mm/s^2)', + label => 'Infill (mm/s²)', cli => 'infill-acceleration', type => 'f', }, diff --git a/slic3r.pl b/slic3r.pl index ef6101ec0..e1366e79c 100755 --- a/slic3r.pl +++ b/slic3r.pl @@ -111,7 +111,7 @@ Usage: slic3r.pl [ OPTIONS ] file.stl Printer options: --nozzle-diameter Diameter of nozzle in mm (default: $Slic3r::nozzle_diameter) - --print-center Coordinates of the point to center the print around + --print-center Coordinates in mm of the point to center the print around (default: $Slic3r::print_center->[0],$Slic3r::print_center->[1]) --use-relative-e-distances Use relative distances for extrusion in GCODE output @@ -131,16 +131,16 @@ Usage: slic3r.pl [ OPTIONS ] file.stl Change this to alter the amount of plastic extruded. There should be very little need to change this value, which is only useful to compensate for filament packing (default: $Slic3r::extrusion_multiplier) - --temperature Extrusion temperature, set 0 to disable (default: $Slic3r::temperature) + --temperature Extrusion temperature in degree Celsius, set 0 to disable (default: $Slic3r::temperature) Speed options: - --travel-speed Speed of non-print moves in mm/sec (default: $Slic3r::travel_speed) - --perimeter-speed Speed of print moves for perimeters in mm/sec (default: $Slic3r::perimeter_speed) + --travel-speed Speed of non-print moves in mm/s (default: $Slic3r::travel_speed) + --perimeter-speed Speed of print moves for perimeters in mm/s (default: $Slic3r::perimeter_speed) --small-perimeter-speed - Speed of print moves for small perimeters in mm/sec (default: $Slic3r::small_perimeter_speed) - --infill-speed Speed of print moves in mm/sec (default: $Slic3r::infill_speed) - --solid-infill-speed Speed of print moves for solid surfaces in mm/sec (default: $Slic3r::solid_infill_speed) - --bridge-speed Speed of bridge print moves in mm/sec (default: $Slic3r::bridge_speed) + Speed of print moves for small perimeters in mm/s (default: $Slic3r::small_perimeter_speed) + --infill-speed Speed of print moves in mm/s (default: $Slic3r::infill_speed) + --solid-infill-speed Speed of print moves for solid surfaces in mm/s (default: $Slic3r::solid_infill_speed) + --bridge-speed Speed of bridge print moves in mm/s (default: $Slic3r::bridge_speed) --bottom-layer-speed-ratio Factor to increase/decrease speeds on bottom layer by (default: $Slic3r::bottom_layer_speed_ratio) @@ -171,12 +171,12 @@ Usage: slic3r.pl [ OPTIONS ] file.stl Retraction options: --retract-length Length of retraction in mm when pausing extrusion (default: $Slic3r::retract_length) - --retract-speed Speed for retraction in mm/sec (default: $Slic3r::retract_speed) + --retract-speed Speed for retraction in mm/s (default: $Slic3r::retract_speed) --retract-restart-extra Additional amount of filament in mm to push after compensating retraction (default: $Slic3r::retract_restart_extra) --retract-before-travel - Only retract before travel moves of this length (default: $Slic3r::retract_before_travel) + Only retract before travel moves of this length in mm (default: $Slic3r::retract_before_travel) --retract-lift Lift Z by the given distance in mm when retracting (default: $Slic3r::retract_lift) Skirt options: