mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-06 22:47:32 -06:00
Merge branch 'main' into feature/OrcaFilamentLibrary
This commit is contained in:
commit
6a4cf24e6b
111 changed files with 4039 additions and 385 deletions
|
@ -4722,11 +4722,22 @@ void PrintConfigDef::init_fff_params()
|
|||
def->category = L("Support");
|
||||
def->tooltip = L("Support will be generated for overhangs whose slope angle is below the threshold.");
|
||||
def->sidetext = L("°");
|
||||
def->min = 1;
|
||||
def->min = 0;
|
||||
def->max = 90;
|
||||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionInt(30));
|
||||
|
||||
def = this->add("support_threshold_overlap", coFloatOrPercent);
|
||||
def->label = L("Threshold overlap");
|
||||
def->category = L("Support");
|
||||
def->tooltip = L("If threshold angle is zero, support will be generated for overhangs whose overlap is below the threshold. The smaller this value is, the steeper the overhang that can be printed without support.");
|
||||
def->sidetext = L("mm or %");
|
||||
def->min = 0;
|
||||
def->max = 100;
|
||||
def->max_literal = 0.5;
|
||||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionFloatOrPercent(50., true));
|
||||
|
||||
def = this->add("tree_support_branch_angle", coFloat);
|
||||
def->label = L("Tree support branch angle");
|
||||
def->category = L("Support");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue