mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 06:57:36 -06:00
Add elephant foot compensation over multiple layers (#2254)
#https://github.com/prusa3d/PrusaSlicer/pull/10976 Co-authored-by: Roberto Mozzicato <bitblasters@gmail.com>
This commit is contained in:
parent
3b5f42cf49
commit
bda8249e06
6 changed files with 18 additions and 2 deletions
|
@ -392,6 +392,17 @@ void PrintConfigDef::init_common_params()
|
|||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloat(0.));
|
||||
|
||||
def = this->add("elefant_foot_compensation_layers", coInt);
|
||||
def->label = L("Elephant foot compensation layers");
|
||||
def->category = L("Quality");
|
||||
def->tooltip = L("The number of layers on which the elephant foot compensation will be active. "
|
||||
"The first layer will be shrunk by the elephant foot compensation value, then "
|
||||
"the next layers will be linearly shrunk less, up to the layer indicated by this value.");
|
||||
def->sidetext = L("layers");
|
||||
def->min = 1;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionInt(1));
|
||||
|
||||
def = this->add("layer_height", coFloat);
|
||||
def->label = L("Layer height");
|
||||
def->category = L("Quality");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue