Merge pull request #5808 from thinkyhead/rc_delta_float_radius

Cast DELTA_PRINTABLE_RADIUS to float in sq()
This commit is contained in:
Scott Lahteine 2017-02-11 23:43:46 -06:00 committed by GitHub
commit c64ecf95e2
2 changed files with 2 additions and 2 deletions

View File

@ -2937,7 +2937,7 @@ bool position_is_reachable(float target[XYZ]
return HYPOT2(dx - SCARA_OFFSET_X, dy - SCARA_OFFSET_Y) <= sq(L1 + L2);
#endif
#elif ENABLED(DELTA)
return HYPOT2(dx, dy) <= sq(DELTA_PRINTABLE_RADIUS);
return HYPOT2(dx, dy) <= sq((float)(DELTA_PRINTABLE_RADIUS));
#else
const float dz = RAW_Z_POSITION(target[Z_AXIS]);
return dx >= X_MIN_POS - 0.0001 && dx <= X_MAX_POS + 0.0001

View File

@ -1554,7 +1554,7 @@ KeepDrawing:
// This assumes the center is 0,0
#if ENABLED(DELTA)
if (axis != Z_AXIS) {
max = sqrt(sq(DELTA_PRINTABLE_RADIUS) - sq(current_position[Y_AXIS - axis]));
max = sqrt(sq((float)(DELTA_PRINTABLE_RADIUS)) - sq(current_position[Y_AXIS - axis]));
min = -max;
}
#endif