mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
small perimeter threshold
This commit is contained in:
parent
397e0f0a29
commit
dd77599dea
12 changed files with 33 additions and 10 deletions
|
@ -3324,7 +3324,7 @@ std::string GCode::extrude_loop(ExtrusionLoop loop, std::string description, dou
|
|||
// BBS: remove small small_perimeter_speed config, and will absolutely
|
||||
// remove related code if no other issue in the coming release.
|
||||
// apply the small perimeter speed
|
||||
if (is_perimeter(paths.front().role()) && loop.length() <= SMALL_PERIMETER_LENGTH && speed == -1)
|
||||
if (is_perimeter(paths.front().role()) && loop.length() <= SMALL_PERIMETER_LENGTH(m_config.small_perimeter_threshold.value) && speed == -1)
|
||||
speed = m_config.small_perimeter_speed.get_abs_value(m_config.outer_wall_speed);
|
||||
|
||||
// extrude along the path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue