Use perimeter length, not area, to detect small perimeters. #355

This commit is contained in:
Alessandro Ranellucci 2012-05-14 00:30:52 +02:00
parent f1905256f8
commit 4bffa9cb6b
2 changed files with 5 additions and 5 deletions

View file

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