mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-30 21:00:49 -07:00
Fix incorrect feedrate for G2/G3 arcs
This commit is contained in:
parent
1394a3ccf2
commit
72711231fd
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue