mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-16 10:15:53 +08:00
feat: infill overlap in mm (besides %) (CURA-786)
This commit is contained in:
parent
de64e812ff
commit
59f5bcb1cd
@ -572,14 +572,28 @@
|
|||||||
"inherit_function": "'lines' if infill_sparse_density > 25 else 'grid'"
|
"inherit_function": "'lines' if infill_sparse_density > 25 else 'grid'"
|
||||||
},
|
},
|
||||||
"infill_overlap": {
|
"infill_overlap": {
|
||||||
"label": "Infill Overlap",
|
"label": "Infill Overlap Percentage",
|
||||||
"description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
|
"description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
|
||||||
"unit": "%",
|
"unit": "%",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"default": 10,
|
"default": 10,
|
||||||
|
"inherit_function": "10 if infill_sparse_density < 95 else 0",
|
||||||
"min_value": "0",
|
"min_value": "0",
|
||||||
"max_value_warning": "100",
|
"max_value_warning": "100",
|
||||||
"visible": false
|
"visible": false,
|
||||||
|
"children": {
|
||||||
|
"infill_overlap_mm": {
|
||||||
|
"label": "Infill Overlap",
|
||||||
|
"description": "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill.",
|
||||||
|
"unit": "mm",
|
||||||
|
"type": "float",
|
||||||
|
"default": 0.04,
|
||||||
|
"min_value_warning": "0",
|
||||||
|
"max_value_warning": "machine_nozzle_size",
|
||||||
|
"inherit_function": "infill_line_width * parent_value / 100",
|
||||||
|
"visible": false
|
||||||
|
},
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"infill_wipe_dist": {
|
"infill_wipe_dist": {
|
||||||
"label": "Infill Wipe Distance",
|
"label": "Infill Wipe Distance",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user