mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-24 23:23:59 -06:00
Merge remote-tracking branch 'remotes/origin/lm_ultimate_wipe_tower_rotation_fix'
This commit is contained in:
commit
aae6cfc696
1 changed files with 2 additions and 2 deletions
|
@ -142,10 +142,10 @@ public:
|
|||
}
|
||||
|
||||
m_gcode += "G1";
|
||||
if (std::abs(dx) > EPSILON)
|
||||
if (std::abs(rot.x - rotated_current_pos.x) > EPSILON)
|
||||
m_gcode += set_format_X(rot.x);
|
||||
|
||||
if (std::abs(dy) > EPSILON)
|
||||
if (std::abs(rot.y - rotated_current_pos.y) > EPSILON)
|
||||
m_gcode += set_format_Y(rot.y);
|
||||
|
||||
if (e != 0.f)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue