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
1 changed files with 1 additions and 1 deletions
|
@ -312,7 +312,7 @@ namespace Slic3r {
|
||||||
std::string gcode_out;
|
std::string gcode_out;
|
||||||
std::string line;
|
std::string line;
|
||||||
Vec2f pos = tcr.start_pos;
|
Vec2f pos = tcr.start_pos;
|
||||||
Vec2f transformed_pos = pos;
|
Vec2f transformed_pos = Eigen::Rotation2Df(angle) * pos + translation;
|
||||||
Vec2f old_pos(-1000.1f, -1000.1f);
|
Vec2f old_pos(-1000.1f, -1000.1f);
|
||||||
|
|
||||||
while (gcode_str) {
|
while (gcode_str) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue