gcode_arcs: Fix Z moves and E moves

Fix Z moves so that the movement is spaced out among the arc movements.

Fix extrude moves when in absolute extrude mode.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2020-04-22 15:20:59 -04:00
parent ff28f33967
commit 402110f655
2 changed files with 18 additions and 11 deletions

View file

@ -140,7 +140,8 @@ class GCodeParser:
'speed_factor': self._get_gcode_speed_override(),
'speed': self._get_gcode_speed(),
'extrude_factor': self.extrude_factor,
'abs_extrude': self.absolute_extrude,
'absolute_coordinates': self.absolute_coord,
'absolute_extrude': self.absolute_extrude,
'busy': busy,
'move_xpos': move_position[0],
'move_ypos': move_position[1],