mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-06 22:47:32 -06:00
Support threshold overlap (#6606)
* Support threshold overlap * Update tooltip
This commit is contained in:
parent
1b1288c435
commit
7a5746b1ae
9 changed files with 23 additions and 8 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