mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-18 12:17:54 -06:00
Use perimeter length, not area, to detect small perimeters. #355
This commit is contained in:
parent
f1905256f8
commit
4bffa9cb6b
2 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue