mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Merge branch 'feature_cutting_mesh' of github.com:Ultimaker/Cura
This commit is contained in:
commit
eb677f5625
3 changed files with 27 additions and 15 deletions
|
@ -331,6 +331,7 @@ class CuraApplication(QtApplication):
|
||||||
blackmagic
|
blackmagic
|
||||||
print_sequence
|
print_sequence
|
||||||
infill_mesh
|
infill_mesh
|
||||||
|
cutting_mesh
|
||||||
experimental
|
experimental
|
||||||
""".replace("\n", ";").replace(" ", ""))
|
""".replace("\n", ";").replace(" ", ""))
|
||||||
|
|
||||||
|
|
|
@ -4473,6 +4473,31 @@
|
||||||
"settable_per_meshgroup": false,
|
"settable_per_meshgroup": false,
|
||||||
"settable_globally": false
|
"settable_globally": false
|
||||||
},
|
},
|
||||||
|
"infill_mesh_order":
|
||||||
|
{
|
||||||
|
"label": "Infill Mesh Order",
|
||||||
|
"description": "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes.",
|
||||||
|
"default_value": 0,
|
||||||
|
"value": "1 if infill_mesh else 0",
|
||||||
|
"minimum_value_warning": "1",
|
||||||
|
"maximum_value_warning": "50",
|
||||||
|
"type": "int",
|
||||||
|
"settable_per_mesh": true,
|
||||||
|
"settable_per_extruder": false,
|
||||||
|
"settable_per_meshgroup": false,
|
||||||
|
"settable_globally": false
|
||||||
|
},
|
||||||
|
"cutting_mesh":
|
||||||
|
{
|
||||||
|
"label": "Cutting Mesh",
|
||||||
|
"description": "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder.",
|
||||||
|
"type": "bool",
|
||||||
|
"default_value": false,
|
||||||
|
"settable_per_mesh": true,
|
||||||
|
"settable_per_extruder": false,
|
||||||
|
"settable_per_meshgroup": false,
|
||||||
|
"settable_globally": false
|
||||||
|
},
|
||||||
"mold_enabled":
|
"mold_enabled":
|
||||||
{
|
{
|
||||||
"label": "Mold",
|
"label": "Mold",
|
||||||
|
@ -4507,20 +4532,6 @@
|
||||||
"settable_per_mesh": true,
|
"settable_per_mesh": true,
|
||||||
"enabled": "mold_enabled"
|
"enabled": "mold_enabled"
|
||||||
},
|
},
|
||||||
"infill_mesh_order":
|
|
||||||
{
|
|
||||||
"label": "Infill Mesh Order",
|
|
||||||
"description": "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes.",
|
|
||||||
"default_value": 0,
|
|
||||||
"value": "1 if infill_mesh else 0",
|
|
||||||
"minimum_value_warning": "1",
|
|
||||||
"maximum_value_warning": "50",
|
|
||||||
"type": "int",
|
|
||||||
"settable_per_mesh": true,
|
|
||||||
"settable_per_extruder": false,
|
|
||||||
"settable_per_meshgroup": false,
|
|
||||||
"settable_globally": false
|
|
||||||
},
|
|
||||||
"support_mesh":
|
"support_mesh":
|
||||||
{
|
{
|
||||||
"label": "Support Mesh",
|
"label": "Support Mesh",
|
||||||
|
|
|
@ -154,7 +154,7 @@ Item
|
||||||
id: definitionsModel;
|
id: definitionsModel;
|
||||||
containerId: Cura.MachineManager.activeDefinitionId
|
containerId: Cura.MachineManager.activeDefinitionId
|
||||||
visibilityHandler: UM.SettingPreferenceVisibilityHandler { }
|
visibilityHandler: UM.SettingPreferenceVisibilityHandler { }
|
||||||
exclude: ["machine_settings", "command_line_settings", "infill_mesh", "infill_mesh_order", "support_mesh", "anti_overhang_mesh"] // TODO: infill_mesh settigns are excluded hardcoded, but should be based on the fact that settable_globally, settable_per_meshgroup and settable_per_extruder are false.
|
exclude: ["machine_settings", "command_line_settings", "infill_mesh", "infill_mesh_order", "cutting_mesh", "support_mesh", "anti_overhang_mesh"] // TODO: infill_mesh settigns are excluded hardcoded, but should be based on the fact that settable_globally, settable_per_meshgroup and settable_per_extruder are false.
|
||||||
expanded: CuraApplication.expandedCategories
|
expanded: CuraApplication.expandedCategories
|
||||||
onExpandedChanged:
|
onExpandedChanged:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue