Take support_enable into account when evaluating support_structure.

Unsure whether this is necessary, but we decided to do this to make
the evaluation logically equivalent to the existing code currently
in master.

CURA-6711
This commit is contained in:
Nino van Hooff 2020-07-14 09:44:40 +02:00
parent bc34c8dd0b
commit 617b07061d
55 changed files with 56 additions and 56 deletions

View file

@ -44,7 +44,7 @@ support_top_distance = 0.15
support_z_distance = 0.25
support_bottom_distance = 0.15
support_brim_width = 6
support_infill_rate = =15 if support_structure=='normal' else 0 if support_structure=='tree' else 15
support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15
support_line_distance = 1.7
support_line_width = 0.25
support_initial_layer_line_distance = 2.7

View file

@ -44,7 +44,7 @@ support_top_distance = 0.15
support_z_distance = 0.25
support_bottom_distance = 0.15
support_brim_width = 6
support_infill_rate = =15 if support_structure=='normal' else 0 if support_structure=='tree' else 15
support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15
support_line_distance = 1.7
support_line_width = 0.25
support_initial_layer_line_distance = 2.7

View file

@ -44,7 +44,7 @@ support_top_distance = 0.15
support_z_distance = 0.25
support_bottom_distance = 0.15
support_brim_width = 6
support_infill_rate = =15 if support_structure=='normal' else 0 if support_structure=='tree' else 15
support_infill_rate = =15 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 15
support_line_distance = 1.7
support_line_width = 0.25
support_initial_layer_line_distance = 2.7