mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-30 18:11:59 +08:00
Fix an incorrect extra travel when using the wipe tower with no ramming and with extruder offset applied #10801
This commit is contained in:
parent
23a72cec1f
commit
cc45644a25
@ -312,7 +312,7 @@ namespace Slic3r {
|
||||
std::string gcode_out;
|
||||
std::string line;
|
||||
Vec2f pos = tcr.start_pos;
|
||||
Vec2f transformed_pos = pos;
|
||||
Vec2f transformed_pos = Eigen::Rotation2Df(angle) * pos + translation;
|
||||
Vec2f old_pos(-1000.1f, -1000.1f);
|
||||
|
||||
while (gcode_str) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user