mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-19 20:57:53 -06:00
Limit the max speed on the wipe tower (#6044)
* limit the max speed on the wipe tower
This commit is contained in:
parent
bac86f481c
commit
230a4aaad8
1 changed files with 1 additions and 1 deletions
|
@ -1345,7 +1345,7 @@ WipeTower::ToolChangeResult WipeTower2::finish_layer()
|
||||||
return poly;
|
return poly;
|
||||||
};
|
};
|
||||||
|
|
||||||
feedrate = first_layer ? m_first_layer_speed * 60.f : m_perimeter_speed * 60.f;
|
feedrate = first_layer ? m_first_layer_speed * 60.f : std::min(m_wipe_tower_max_purge_speed * 60.f, m_perimeter_speed * 60.f);
|
||||||
|
|
||||||
// outer contour (always)
|
// outer contour (always)
|
||||||
bool infill_cone = first_layer && m_wipe_tower_width > 2*spacing && m_wipe_tower_depth > 2*spacing;
|
bool infill_cone = first_layer && m_wipe_tower_width > 2*spacing && m_wipe_tower_depth > 2*spacing;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue