mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 13:17:54 -06:00
Bugfix: external details were simplified too much when using default settings at low layer height, because the internal flow was erroneously taken into account. #2807
This commit is contained in:
parent
bab3404b2d
commit
795107dfa2
2 changed files with 14 additions and 5 deletions
|
@ -37,6 +37,9 @@ class Flow
|
|||
coord_t scaled_spacing() const {
|
||||
return scale_(this->spacing());
|
||||
};
|
||||
coord_t scaled_spacing(const Flow &other) const {
|
||||
return scale_(this->spacing(other));
|
||||
};
|
||||
|
||||
static Flow new_from_config_width(FlowRole role, const ConfigOptionFloatOrPercent &width, float nozzle_diameter, float height, float bridge_flow_ratio);
|
||||
static Flow new_from_spacing(float spacing, float nozzle_diameter, float height, bool bridge);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue