mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 23:05:01 -06:00
Make small feature max length a child setting of small hole max size
The small hole max size is not used in CuraEngine. It may not be a leaf setting then. Instead, Small Feature Max Length is used which is directly dependent on Small Hole Max Size. They are simply different units of the same thing. This is how we should structure these settings then.
This commit is contained in:
parent
0c846d76a1
commit
d25ca84c6c
1 changed files with 15 additions and 12 deletions
|
@ -7559,18 +7559,21 @@
|
|||
"type": "float",
|
||||
"minimum_value": "0",
|
||||
"default_value": 0,
|
||||
"settable_per_mesh": true
|
||||
},
|
||||
"small_feature_max_length":
|
||||
{
|
||||
"label": "Small Feature Max Length",
|
||||
"description": "Feature outlines that are shorter than this length will be printed using Small Feature Speed.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"minimum_value": "0",
|
||||
"default_value": 0,
|
||||
"value": "small_hole_max_size * math.pi",
|
||||
"settable_per_mesh": true
|
||||
"settable_per_mesh": true,
|
||||
"children":
|
||||
{
|
||||
"small_feature_max_length":
|
||||
{
|
||||
"label": "Small Feature Max Length",
|
||||
"description": "Feature outlines that are shorter than this length will be printed using Small Feature Speed.",
|
||||
"unit": "mm",
|
||||
"type": "float",
|
||||
"minimum_value": "0",
|
||||
"default_value": 0,
|
||||
"value": "small_hole_max_size * math.pi",
|
||||
"settable_per_mesh": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"small_feature_speed_factor":
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue