mirror of
https://github.com/Ultimaker/Cura.git
synced 2026-01-22 13:17:00 -07:00
Fix "lines" infill angles
This commit is contained in:
parent
3908e4da4a
commit
0ab2ef8f15
1 changed files with 3 additions and 2 deletions
|
|
@ -130,11 +130,12 @@
|
|||
"zigzag": "Zig Zag",
|
||||
"cross": "Cross",
|
||||
"cross_3d": "Cross 3D"
|
||||
}
|
||||
},
|
||||
"value": "'lines'"
|
||||
},
|
||||
"infill_angles":
|
||||
{
|
||||
"value": "'[' + str(round(45 / math.sin(math.radians(float(blackbelt_gantry_angle))),1)) + ',' + str(round(45 / math.sin(math.radians(float(blackbelt_gantry_angle))),1)) + ']' if infill_pattern == 'lines' else '[ ]'"
|
||||
"value": "'[' + str(round(45 * math.sin(math.radians(float(blackbelt_gantry_angle))))) + ',-' + str(round(45 * math.sin(math.radians(float(blackbelt_gantry_angle))))) + ']' if infill_pattern == 'lines' else '[ ]'"
|
||||
},
|
||||
"gradual_infill_steps":
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue