NEW: Add "Support xy expansion distance" setting

Open the "Support xy expansion distance" setting for users who can set
expanding and shrinking distance along xy to change normal supports' overhang area.

Jira: STUDIO-1297
Change-Id: If3a1efe99acaced12216966a6f8abd0dc3734757
(cherry picked from commit c1fd588a181b17403109b64a0019818f428252da)
This commit is contained in:
MusangKing 2022-11-25 18:23:54 +08:00 committed by Lane.Wei
parent ab49516ec1
commit d1e4cb430c
10 changed files with 21 additions and 7 deletions

View file

@ -2593,6 +2593,14 @@ void PrintConfigDef::init_fff_params()
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(2.5));
def = this->add("support_expansion", coFloat);
def->label = L("Support xy expansion distance");
def->category = L("Support");
def->tooltip = L("Expanding (+) or shrinking (-) support volume");
def->sidetext = L("mm");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(0));
def = this->add("support_speed", coFloat);
def->label = L("Support");
def->category = L("Speed");