Arachne parameter names: unified case with the rest

This commit is contained in:
Lukas Matena 2022-06-14 12:48:54 +02:00
parent 419014133a
commit c3edafcc33
2 changed files with 9 additions and 9 deletions

View file

@ -3076,7 +3076,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionEnum<PerimeterGeneratorType>(PerimeterGeneratorType::Arachne));
def = this->add("wall_transition_length", coFloat);
def->label = L("Wall Transition Length");
def->label = L("Wall transition length");
def->category = L("Advanced");
def->tooltip = L("When transitioning between different numbers of walls as the part becomes"
"thinner, a certain amount of space is allotted to split or join the wall lines.");
@ -3086,7 +3086,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionFloat(0.4));
def = this->add("wall_transition_filter_deviation", coFloatOrPercent);
def->label = L("Wall Transitioning Filter Margin");
def->label = L("Wall transitioning filter margin");
def->category = L("Advanced");
def->tooltip = L("Prevent transitioning back and forth between one extra wall and one less. This "
"margin extends the range of line widths which follow to [Minimum Wall Line "
@ -3101,7 +3101,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionFloatOrPercent(25, true));
def = this->add("wall_transition_angle", coFloat);
def->label = L("Wall Transitioning Threshold Angle");
def->label = L("Wall transitioning threshold angle");
def->category = L("Advanced");
def->tooltip = L("When to create transitions between even and odd numbers of walls. A wedge shape with"
" an angle greater than this setting will not have transitions and no walls will be "
@ -3114,7 +3114,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionFloat(10.));
def = this->add("wall_distribution_count", coInt);
def->label = L("Wall Distribution Count");
def->label = L("Wall distribution count");
def->category = L("Advanced");
def->tooltip = L("The number of walls, counted from the center, over which the variation needs to be "
"spread. Lower values mean that the outer walls don't change in width.");
@ -3123,7 +3123,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionInt(1));
def = this->add("wall_split_middle_threshold", coPercent);
def->label = L("Split Middle Line Threshold");
def->label = L("Split middle line threshold");
def->category = L("Advanced");
def->tooltip = L("The smallest line width, as a factor of the normal line width, above which the middle "
"line (if there is one) will be split into two. Reduce this setting to use more, thinner "
@ -3138,7 +3138,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionPercent(50));
def = this->add("wall_add_middle_threshold", coPercent);
def->label = L("Add Middle Line Threshold");
def->label = L("Add middle line threshold");
def->category = L("Advanced");
def->tooltip = L("The smallest line width, as a factor of the normal line width, above which a middle "
"line (if there wasn't one already) will be added. Reduce this setting to use more, "
@ -3153,7 +3153,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionPercent(75));
def = this->add("min_feature_size", coFloat);
def->label = L("Minimum Feature Size");
def->label = L("Minimum feature size");
def->category = L("Advanced");
def->tooltip = L("Minimum thickness of thin features. Model features that are thinner than this value will "
"not be printed, while features thicker than the Minimum Feature Size will be widened to "
@ -3164,7 +3164,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionFloat(0.1));
def = this->add("min_bead_width", coFloatOrPercent);
def->label = L("Minimum Wall Line Width");
def->label = L("Minimum wall line width");
def->category = L("Advanced");
def->tooltip = L("Width of the wall that will replace thin features (according to the Minimum Feature Size) "
"of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature,"

View file

@ -1671,7 +1671,7 @@ void TabPrint::build()
optgroup = page->new_optgroup(L("Other"));
optgroup->append_single_option_line("clip_multipart_objects");
optgroup = page->new_optgroup(L("Arachne"));
optgroup = page->new_optgroup(L("Arachne perimeter generator"));
optgroup->append_single_option_line("wall_add_middle_threshold");
optgroup->append_single_option_line("wall_split_middle_threshold");
optgroup->append_single_option_line("wall_transition_angle");