Implemented retraction and fixed extrusion math

This commit is contained in:
Alessandro Ranellucci 2011-09-05 18:52:09 +02:00
parent 5595839b31
commit d8b848a67f
5 changed files with 87 additions and 29 deletions

View file

@ -24,15 +24,20 @@ use Slic3r::Surface;
our $layer_height = 0.4;
our $resolution = 0.1;
our $perimeter_offsets = 3;
our $fill_density = 0.2; # 1 = 100%
our $flow_width = 0.4;
our $fill_density = 0.4; # 1 = 100%
our $filament_diameter = 3; # mm
our $filament_packing_density = 0.85;
our $flow_width = 0.50;
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 $retract_length = 2; # mm
our $retract_restart_extra = 0; # mm
our $retract_speed = 40; # mm/sec
our $use_relative_e_distances = 0;
our $print_center = [100,100]; # object will be centered around this point