Browse Source

Fix coordinate size for G26 w/out arcs (#15443)

pull/1/head
Oliver Jean Eifler 5 years ago
committed by Scott Lahteine
parent
commit
d52b908627
  1. 2
      Marlin/src/gcode/bedlevel/G26.cpp

2
Marlin/src/gcode/bedlevel/G26.cpp

@ -800,7 +800,7 @@ void GcodeSuite::G26() {
if (user_canceled()) goto LEAVE; // Check if the user wants to stop the Mesh Validation
#endif
xy_float_t p = { circle.x + _COS(ind ), circle.y + _SIN(ind ), g26_layer_height },
xyz_float_t p = { circle.x + _COS(ind ), circle.y + _SIN(ind ), g26_layer_height },
q = { circle.x + _COS(ind + 1), circle.y + _SIN(ind + 1), g26_layer_height };
#if IS_KINEMATIC

Loading…
Cancel
Save