Wipe tower: set travel feedrate for a move from custom toolchange position to the wipe tower (#5483)

This commit is contained in:
Lukas Matena 2021-03-22 14:07:28 +01:00
parent 67bc2e472f
commit 3459231111
2 changed files with 17 additions and 5 deletions

View file

@ -259,6 +259,8 @@ private:
float m_layer_height = 0.f; // Current layer height.
size_t m_max_color_changes = 0; // Maximum number of color changes per layer.
int m_old_temperature = -1; // To keep track of what was the last temp that we set (so we don't issue the command when not neccessary)
float m_travel_speed = 0.f;
float m_first_layer_speed = 0.f;
// G-code generator parameters.
float m_cooling_tube_retraction = 0.f;
@ -383,6 +385,6 @@ private:
}; // namespace Slic3r
} // namespace Slic3r
#endif // WipeTowerPrusaMM_hpp_