mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 09:02:06 +00:00
Fix incorrect feedrate for G2/G3 arcs
This commit is contained in:
@@ -3125,7 +3125,7 @@ void GCodeProcessor::process_G2_G3(const GCodeReader::GCodeLine& line, bool cloc
|
||||
if (extrusion.has_value())
|
||||
g1_axes[E] = target[E];
|
||||
if (feedrate.has_value())
|
||||
g1_feedrate = (double)*feedrate;
|
||||
g1_feedrate = (double)*feedrate / MMMIN_TO_MMSEC;
|
||||
process_G1(g1_axes, g1_feedrate, G1DiscretizationOrigin::G2G3, remaining_internal_g1_lines);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user