add top area threshold

This commit is contained in:
Wang YB
2024-01-18 10:16:47 +08:00
parent 12da7dac6a
commit 2eecb1ce8a
6 changed files with 29 additions and 4 deletions

View File

@@ -3550,6 +3550,16 @@ void PrintConfigDef::init_fff_params()
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionEnum<TopOneWallType>(TopOneWallType::Alltop));
//w17
def = this->add("top_area_threshold", coPercent);
def->label = L("Top area threshold");
def->tooltip = L("This factor affects the acreage of top area. The small the number the big the top area.");
def->sidetext = L("%");
def->min = 0;
def->max = 500;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionPercent(100));
def = this->add("wall_transition_length", coFloatOrPercent);
def->label = L("Perimeter transition length");
def->category = L("Advanced");