Provide separate settings for anchoring upper and lower skins in infill.

Just expanding the upper skins into the infill is probably sufficient for
most situations but if users want a symmetrical structure then expanding
lower skins too could be useful. Users will need to experiment to get the
desired results for a given model.
This commit is contained in:
Mark Burton 2017-02-01 08:37:20 +00:00
parent 5817905459
commit 45dc52de16

View file

@ -1241,13 +1241,34 @@
"default_value": 0,
"settable_per_mesh": true
},
"anchor_skin_in_infill":
"anchor_skins_in_infill":
{
"label": "Anchor Skin In Infill",
"label": "Anchor Skins In Infill",
"description": "Expand skin areas so that they are anchored by the infill layers above and below. The skin areas are expanded sufficiently so that they bridge the gap between the infill lines.",
"type": "bool",
"default_value": false,
"settable_per_mesh": true
"settable_per_mesh": true,
"children":
{
"anchor_upper_skin_in_infill":
{
"label": "Anchor Upper Skin In Infill",
"description": "Expand upper skin areas (areas with air above) so that they are anchored by the infill layers above and below. The skin areas are expanded sufficiently so that they bridge the gap between the infill lines.",
"type": "bool",
"default_value": false,
"value": "anchor_skins_in_infill",
"settable_per_mesh": true
},
"anchor_lower_skin_in_infill":
{
"label": "Anchor Lower Skin In Infill",
"description": "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below. The skin areas are expanded sufficiently so that they bridge the gap between the infill lines.",
"type": "bool",
"default_value": false,
"value": "anchor_skins_in_infill",
"settable_per_mesh": true
}
}
}
}
},