Feature Ironing Inset added (#7969)

This commit is contained in:
Diogo Santos 2025-01-08 03:35:08 +00:00 committed by GitHub
parent ac80575b28
commit 7834f78c90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 26 additions and 6 deletions

View file

@ -3082,7 +3082,17 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 1;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(0.1));
def->set_default_value(new ConfigOptionFloat(0));
def = this->add("ironing_inset", coFloat);
def->label = L("Ironing inset");
def->category = L("Quality");
def->tooltip = L("The distance to keep from the edges. A value of 0 sets this to half of the nozzle diameter");
def->sidetext = L("mm");
def->min = 0;
def->max = 100;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(0));
def = this->add("ironing_speed", coFloat);
def->label = L("Ironing speed");