mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 05:37:52 -06:00
FDM snug supports: New parameter "closing radius", inspired by Cura's
support_join_distance
This commit is contained in:
parent
1bf5654231
commit
dbd1c09523
8 changed files with 32 additions and 6 deletions
|
@ -2366,6 +2366,16 @@ void PrintConfigDef::init_fff_params()
|
|||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionInt(-1));
|
||||
|
||||
def = this->add("support_material_closing_radius", coFloat);
|
||||
def->label = L("Closing radius");
|
||||
def->category = L("Support material");
|
||||
def->tooltip = L("For snug supports, the support regions will be merged using morphological closing operation."
|
||||
" Gaps smaller than the closing radius will be filled in.");
|
||||
def->sidetext = L("mm");
|
||||
def->min = 0;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloat(2));
|
||||
|
||||
def = this->add("support_material_interface_spacing", coFloat);
|
||||
def->label = L("Interface pattern spacing");
|
||||
def->category = L("Support material");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue