Browse Source

Fix circle arc condition (#20322)

vanilla_fb_2.0.x
yysh12 4 years ago
committed by GitHub
parent
commit
2878876064
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/gcode/motion/G2_G3.cpp

2
Marlin/src/gcode/motion/G2_G3.cpp

@ -87,7 +87,7 @@ void plan_arc(
#endif
// Do a full circle if angular rotation is near 0 and the target is current position
if ((!angular_travel || NEAR_ZERO(angular_travel)) && NEAR(current_position[p_axis], cart[p_axis]) && NEAR(current_position[q_axis], cart[q_axis])) {
if (!angular_travel || (NEAR_ZERO(angular_travel) && NEAR(current_position[p_axis], cart[p_axis]) && NEAR(current_position[q_axis], cart[q_axis]))) {
// Preserve direction for circles
angular_travel = clockwise ? -RADIANS(360) : RADIANS(360);
}

Loading…
Cancel
Save