revert 100% density pattern hack

In the fdmprinter definition the 'infill' is created by 999999 bottom layers to change to infill pattern to lines. This hack is reverted for ultimaker printers. More info: PP-25
This commit is contained in:
Rijk van Manen 2021-11-15 15:23:17 +01:00
parent c9feace0fb
commit 35550fc1b4

View File

@ -43,6 +43,12 @@
}, },
"skin_angles": { "skin_angles": {
"value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]" "value": "[] if infill_pattern not in ['cross', 'cross_3d'] else [20, 110]"
},
"top_layers": {
"value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))"
},
"bottom_layers": {
"value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))"
} }
} }
} }