mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 20:46:01 +08:00
Merge pull request #16444 from Ultimaker/CURA-10811-improve-smooth
Add fluid motion related settings
This commit is contained in:
commit
ba7004ff66
@ -6803,6 +6803,48 @@
|
|||||||
"minimum_value_warning": "500",
|
"minimum_value_warning": "500",
|
||||||
"maximum_value_warning": "100000",
|
"maximum_value_warning": "100000",
|
||||||
"settable_per_mesh": true
|
"settable_per_mesh": true
|
||||||
|
},
|
||||||
|
"meshfix_fluid_motion_enabled":
|
||||||
|
{
|
||||||
|
"label": "Enable Fluid Motion",
|
||||||
|
"description": "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions.",
|
||||||
|
"type": "bool",
|
||||||
|
"default_value": true
|
||||||
|
},
|
||||||
|
"meshfix_fluid_motion_shift_distance":
|
||||||
|
{
|
||||||
|
"label": "Fluid Motion Shift Distance",
|
||||||
|
"description": "Distance points are shifted to smooth the path",
|
||||||
|
"enabled": "meshfix_fluid_motion_enabled",
|
||||||
|
"type": "float",
|
||||||
|
"unit": "mm",
|
||||||
|
"default_value": 0.1,
|
||||||
|
"minimum_value": "0.01",
|
||||||
|
"maximum_value": "1"
|
||||||
|
},
|
||||||
|
"meshfix_fluid_motion_small_distance":
|
||||||
|
{
|
||||||
|
"label": "Fluid Motion Small Distance",
|
||||||
|
"description": "Distance points are shifted to smooth the path",
|
||||||
|
"enabled": "meshfix_fluid_motion_enabled",
|
||||||
|
"unit": "mm",
|
||||||
|
"type": "float",
|
||||||
|
"default_value": 0.01,
|
||||||
|
"minimum_value": "0.01",
|
||||||
|
"maximum_value": "0.1"
|
||||||
|
},
|
||||||
|
"meshfix_fluid_motion_angle":
|
||||||
|
{
|
||||||
|
"label": "Fluid Motion Angle",
|
||||||
|
"description": "If a toolpath-segment deviates more than this angle from the general motion it is smoothed.",
|
||||||
|
"enabled": "meshfix_fluid_motion_enabled",
|
||||||
|
"type": "float",
|
||||||
|
"unit": "\u00b0",
|
||||||
|
"default_value": 15,
|
||||||
|
"maximum_value": "90",
|
||||||
|
"minimum_value": "0",
|
||||||
|
"minimum_value_warning": "1",
|
||||||
|
"maximum_value_warning": "35"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -365,6 +365,10 @@ multiple_mesh_overlap
|
|||||||
carve_multiple_volumes
|
carve_multiple_volumes
|
||||||
alternate_carve_order
|
alternate_carve_order
|
||||||
remove_empty_first_layers
|
remove_empty_first_layers
|
||||||
|
meshfix_fluid_motion_enabled
|
||||||
|
meshfix_fluid_motion_shift_distance
|
||||||
|
meshfix_fluid_motion_small_distance
|
||||||
|
meshfix_fluid_motion_angle
|
||||||
|
|
||||||
[blackmagic]
|
[blackmagic]
|
||||||
print_sequence
|
print_sequence
|
||||||
|
Loading…
x
Reference in New Issue
Block a user