Change precision units to mm
Add some perf optimization for svg output writing
This commit is contained in:
parent
5e97778528
commit
ca7668d858
2 changed files with 13 additions and 10 deletions
src/libslic3r
|
@ -3809,10 +3809,10 @@ void PrintConfigDef::init_sla_params()
|
|||
def = this->add("sla_output_precision", coFloat);
|
||||
def->label = L("SLA output precision");
|
||||
def->tooltip = L("Minimum resolution in nanometers");
|
||||
def->sidetext = L("nm");
|
||||
def->min = 1;
|
||||
def->sidetext = L("mm");
|
||||
def->min = SCALING_FACTOR;
|
||||
def->mode = comExpert;
|
||||
def->set_default_value(new ConfigOptionFloat(1000));
|
||||
def->set_default_value(new ConfigOptionFloat(0.001));
|
||||
}
|
||||
|
||||
void PrintConfigDef::handle_legacy(t_config_option_key &opt_key, std::string &value)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue