Merge branch 'remove_some_zags'

This commit is contained in:
Tim Kuipers 2017-08-14 16:11:44 +02:00
commit 1d5cc92e47

View file

@ -3316,8 +3316,8 @@
},
"support_skip_some_zags":
{
"label": "Skip Some ZigZags Connections",
"description": "Skip some ZigZags connections to make the support structure easier to break.",
"label": "Break Up Support In Chunks",
"description": "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern.",
"type": "bool",
"default_value": false,
"enabled": "support_enable and (support_pattern == 'zigzag')",
@ -3325,18 +3325,36 @@
"settable_per_mesh": false,
"settable_per_extruder": true
},
"support_zag_skip_count":
"support_skip_zag_per_mm":
{
"label": "ZigZag Connection Skip Count",
"description": "Skip one in every N connection lines to make the support structure easier to break.",
"type": "int",
"default_value": 6,
"minimum_value": "1",
"minimum_value_warning": "3",
"label": "Support Chunk Size",
"description": "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away.",
"type": "float",
"unit": "mm",
"default_value": 20,
"minimum_value": "0",
"minimum_value_warning": "support_line_distance",
"enabled": "support_enable and (support_pattern == 'zigzag') and support_skip_some_zags",
"limit_to_extruder": "support_infill_extruder_nr",
"settable_per_mesh": false,
"settable_per_extruder": true
"settable_per_extruder": true,
"children":
{
"support_zag_skip_count":
{
"label": "Support Chunk Line Count",
"description": "Skip one in every N connection lines to make the support structure easier to break away.",
"type": "int",
"default_value": 5,
"value": "round(support_skip_zag_per_mm / support_line_distance)",
"minimum_value": "1",
"minimum_value_warning": "3",
"enabled": "support_enable and (support_pattern == 'zigzag') and support_skip_some_zags",
"limit_to_extruder": "support_infill_extruder_nr",
"settable_per_mesh": false,
"settable_per_extruder": true
}
}
},
"support_infill_rate":
{