Scaling correction parameters in material and print conf.

Scaling is applied in sla_trafo but no effect unless set before model import.
This commit is contained in:
tamasmeszaros 2019-04-03 17:34:46 +02:00
parent 703b9bda32
commit c6b5fe05e4
5 changed files with 38 additions and 26 deletions
src/libslic3r

View file

@ -2296,16 +2296,11 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->default_value = new ConfigOptionFloat(15);
def = this->add("material_correction_printing", coFloats);
def->full_label = L("Correction for expansion when printing");
def->tooltip = L("Correction for expansion when printing");
def->min = 0;
def->default_value = new ConfigOptionFloats( { 1. , 1., 1. } );
def = this->add("material_correction_curing", coFloats);
def->full_label = L("Correction for expansion after curing");
def->tooltip = L("Correction for expansion after curing");
def = this->add("material_correction", coFloats);
def->full_label = L("Correction for expansion");
def->tooltip = L("Correction for expansion");
def->min = 0;
def->mode = comExpert;
def->default_value = new ConfigOptionFloats( { 1. , 1., 1. } );
def = this->add("material_notes", coString);