mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 13:55:56 +08:00
Merge pull request #16429 from Ultimaker/CURA-10829_dont_expose_small_skin_to_air
[CURA-10829] Option to not use small skin areas on surface
This commit is contained in:
commit
331ddf3dde
@ -1664,16 +1664,28 @@
|
|||||||
"small_skin_width":
|
"small_skin_width":
|
||||||
{
|
{
|
||||||
"label": "Small Top/Bottom Width",
|
"label": "Small Top/Bottom Width",
|
||||||
"description": "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions.",
|
"description": "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface').",
|
||||||
"value": "skin_line_width * 2",
|
"value": "skin_line_width * 2",
|
||||||
"default_value": 1,
|
"default_value": 1,
|
||||||
"minimum_value": "0",
|
"minimum_value": "0",
|
||||||
|
"maximum_value_warning": "skin_line_width * 3",
|
||||||
"type": "float",
|
"type": "float",
|
||||||
"enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'",
|
"enabled": "(top_layers > 0 or bottom_layers > 0) and top_bottom_pattern != 'concentric'",
|
||||||
"limit_to_extruder": "top_bottom_extruder_nr",
|
"limit_to_extruder": "top_bottom_extruder_nr",
|
||||||
"settable_per_mesh": true,
|
"settable_per_mesh": true,
|
||||||
"unit": "mm"
|
"unit": "mm"
|
||||||
},
|
},
|
||||||
|
"small_skin_on_surface":
|
||||||
|
{
|
||||||
|
"label": "Small Top/Bottom On Surface",
|
||||||
|
"description": "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern.",
|
||||||
|
"value": "False",
|
||||||
|
"default_value": false,
|
||||||
|
"type": "bool",
|
||||||
|
"enabled": "small_skin_width > 0 and top_layers > 0",
|
||||||
|
"limit_to_extruder": "top_bottom_extruder_nr",
|
||||||
|
"settable_per_mesh": true
|
||||||
|
},
|
||||||
"skin_no_small_gaps_heuristic":
|
"skin_no_small_gaps_heuristic":
|
||||||
{
|
{
|
||||||
"label": "No Skin in Z Gaps",
|
"label": "No Skin in Z Gaps",
|
||||||
|
@ -34,6 +34,8 @@ bottom_thickness
|
|||||||
bottom_layers
|
bottom_layers
|
||||||
ironing_enabled
|
ironing_enabled
|
||||||
skin_monotonic
|
skin_monotonic
|
||||||
|
small_skin_width
|
||||||
|
small_skin_on_surface
|
||||||
|
|
||||||
[infill]
|
[infill]
|
||||||
infill_extruder_nr
|
infill_extruder_nr
|
||||||
|
@ -60,6 +60,7 @@ skin_monotonic
|
|||||||
connect_skin_polygons
|
connect_skin_polygons
|
||||||
skin_angles
|
skin_angles
|
||||||
small_skin_width
|
small_skin_width
|
||||||
|
small_skin_on_surface
|
||||||
skin_no_small_gaps_heuristic
|
skin_no_small_gaps_heuristic
|
||||||
skin_outline_count
|
skin_outline_count
|
||||||
ironing_enabled
|
ironing_enabled
|
||||||
|
Loading…
x
Reference in New Issue
Block a user