mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 15:07:31 -06:00
NEW: add support_critical_regions_only for tree support
When this option enabled, only generate supports for sharp tail, cantilever, thin pillar (not well supported). So holes are safe from unnessary supports. Currently only works for tree supports, will need to copied to normal supports if it works fine. Change-Id: I5eb86484a5b503149e3bfdee8ce73f76a0a849e4
This commit is contained in:
parent
5152a90545
commit
abddb1edc3
9 changed files with 60 additions and 38 deletions
|
@ -2168,6 +2168,14 @@ void PrintConfigDef::init_fff_params()
|
|||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionBool(false));
|
||||
|
||||
// BBS
|
||||
def = this->add("support_critical_regions_only", coBool);
|
||||
def->label = L("Support critical regions only");
|
||||
def->category = L("Support");
|
||||
def->tooltip = L("Only create support for critical regions including sharp tail, cantilever, etc.");
|
||||
def->mode = comSimple;
|
||||
def->set_default_value(new ConfigOptionBool(false));
|
||||
|
||||
// BBS: change type to common float.
|
||||
// It may be rounded to mulitple layer height when independent_support_layer_height is false.
|
||||
def = this->add("support_top_z_distance", coFloat);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue