Rename $Slic3r::resolution to $Slic3r::scaling_factor

This commit is contained in:
Alessandro Ranellucci 2012-04-16 14:05:38 +02:00
parent d51ba94e8a
commit 96d5e513b8
10 changed files with 26 additions and 26 deletions

View file

@ -82,8 +82,8 @@ our $perimeter_acceleration = 25; # mm/s^2
our $infill_acceleration = 50; # mm/s^2
# accuracy options
our $resolution = 0.00000001;
our $small_perimeter_area = ((6.5 / $resolution)**2)*PI;
our $scaling_factor = 0.00000001;
our $small_perimeter_area = ((6.5 / $scaling_factor)**2)*PI;
our $layer_height = 0.4;
our $first_layer_height_ratio = 1;
our $infill_every_layers = 1;