mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-09 07:56:24 -06:00
small perimeter threshold
This commit is contained in:
parent
397e0f0a29
commit
dd77599dea
12 changed files with 33 additions and 10 deletions
|
@ -672,6 +672,7 @@ PRINT_CONFIG_CLASS_DEFINE(
|
|||
((ConfigOptionFloat, outer_wall_line_width))
|
||||
((ConfigOptionFloat, outer_wall_speed))
|
||||
((ConfigOptionFloatOrPercent, small_perimeter_speed))
|
||||
((ConfigOptionFloat, small_perimeter_threshold))
|
||||
((ConfigOptionFloat, infill_direction))
|
||||
((ConfigOptionPercent, sparse_infill_density))
|
||||
((ConfigOptionEnum<InfillPattern>, sparse_infill_pattern))
|
||||
|
@ -1281,7 +1282,12 @@ public:
|
|||
const ConfigOption* option(const t_config_option_key &opt_key) const { return m_data.option(opt_key); }
|
||||
int opt_int(const t_config_option_key &opt_key) const { return m_data.opt_int(opt_key); }
|
||||
int extruder() const { return opt_int("extruder"); }
|
||||
double opt_float(const t_config_option_key &opt_key) const { return m_data.opt_float(opt_key); }
|
||||
double opt_float(const t_config_option_key &opt_key) const {
|
||||
return m_data.opt_float(opt_key);
|
||||
}
|
||||
double get_abs_value(const t_config_option_key &opt_key) const {
|
||||
return m_data.get_abs_value(opt_key);
|
||||
}
|
||||
std::string opt_serialize(const t_config_option_key &opt_key) const { return m_data.opt_serialize(opt_key); }
|
||||
|
||||
// Return an optional timestamp of this object.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue