mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 14:55:03 -06:00
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:
parent
bc34c8dd0b
commit
617b07061d
55 changed files with 56 additions and 56 deletions
|
@ -37,4 +37,4 @@ support_angle = 45
|
|||
support_join_distance = 5
|
||||
support_offset = 2
|
||||
support_pattern = triangles
|
||||
support_infill_rate = =10 if support_structure=='normal' else 0 if support_structure=='tree' else 10
|
||||
support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10
|
||||
|
|
|
@ -36,4 +36,4 @@ support_angle = 45
|
|||
support_join_distance = 5
|
||||
support_offset = 2
|
||||
support_pattern = triangles
|
||||
support_infill_rate = =10 if support_structure=='normal' else 0 if support_structure=='tree' else 10
|
||||
support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10
|
||||
|
|
|
@ -33,6 +33,6 @@ support_angle = 45
|
|||
support_join_distance = 5
|
||||
support_offset = 2
|
||||
support_pattern = triangles
|
||||
support_infill_rate = =10 if support_structure=='normal' else 0 if support_structure=='tree' else 10
|
||||
support_infill_rate = =10 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 10
|
||||
top_bottom_thickness = 1
|
||||
wall_thickness = 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue