|
@@ -800,8 +800,8 @@ void GcodeSuite::G26() {
|
800
|
800
|
if (user_canceled()) goto LEAVE; // Check if the user wants to stop the Mesh Validation
|
801
|
801
|
#endif
|
802
|
802
|
|
803
|
|
- xy_float_t p = { circle.x + _COS(ind ), circle.y + _SIN(ind ), g26_layer_height },
|
804
|
|
- q = { circle.x + _COS(ind + 1), circle.y + _SIN(ind + 1), g26_layer_height };
|
|
803
|
+ xyz_float_t p = { circle.x + _COS(ind ), circle.y + _SIN(ind ), g26_layer_height },
|
|
804
|
+ q = { circle.x + _COS(ind + 1), circle.y + _SIN(ind + 1), g26_layer_height };
|
805
|
805
|
|
806
|
806
|
#if IS_KINEMATIC
|
807
|
807
|
// Check to make sure this segment is entirely on the bed, skip if not.
|