mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-18 20:28:08 -06:00
Generate GCODE
This commit is contained in:
parent
74b4d8d612
commit
a5ba0af7ef
6 changed files with 139 additions and 4 deletions
|
@ -16,6 +16,16 @@ use Slic3r::Surface;
|
|||
our $layer_height = 0.4;
|
||||
our $resolution = 0.1;
|
||||
our $perimeter_offsets = 3;
|
||||
our $flow_width = 0.4; # make sure this is > $resolution
|
||||
our $flow_width = 0.4; # TODO: verify this is a multiple of $resolution
|
||||
our $temperature = 195;
|
||||
|
||||
our $flow_rate = 60; # mm/sec
|
||||
our $print_feed_rate = 60; # mm/sec
|
||||
our $travel_feed_rate = 80; # mm/sec
|
||||
our $bottom_layer_speed_ratio = 0.6;
|
||||
|
||||
our $use_relative_e_distances = 1;
|
||||
|
||||
our $print_center = [100,100]; # object will be centered around this point
|
||||
|
||||
1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue