remove "scarf seam"

This commit is contained in:
Wang YB
2024-05-24 11:25:22 +08:00
parent 125abfca57
commit 201cb4a2fd
16 changed files with 22 additions and 550 deletions

View File

@@ -444,8 +444,7 @@ std::string GCodeWriter::extrude_to_xy_G2G3IJ(const Vec2d &point, const Vec2d &i
return w.string();
}
//w37
//#if 0
#if 0
std::string GCodeWriter::extrude_to_xyz(const Vec3d &point, double dE, const std::string_view comment)
{
m_pos = point;
@@ -454,12 +453,11 @@ std::string GCodeWriter::extrude_to_xyz(const Vec3d &point, double dE, const std
GCodeG1Formatter w;
w.emit_xyz(point);
//w37
w.emit_e(m_extrusion_axis, m_extruder->extrude(dE).second);
w.emit_e(m_extrusion_axis, m_extruder->E());
w.emit_comment(this->config.gcode_comments, comment);
return w.string();
}
//#endif
#endif
std::string GCodeWriter::retract(bool before_wipe)
{