[1.1.x] Use M_PI instead of PI (#10702)

This commit is contained in:
ManuelMcLure 2018-05-11 15:57:16 -07:00 committed by Scott Lahteine
parent a9cef45d45
commit ef9617fe44

View File

@ -773,7 +773,7 @@
#if ENABLED(ARC_SUPPORT)
#define ARC_LENGTH(quarters) (INTERSECTION_CIRCLE_RADIUS * PI * (quarters) / 2)
#define ARC_LENGTH(quarters) (INTERSECTION_CIRCLE_RADIUS * M_PI * (quarters) / 2)
float sx = circle_x + INTERSECTION_CIRCLE_RADIUS, // default to full circle
ex = circle_x + INTERSECTION_CIRCLE_RADIUS,
sy = circle_y, ey = circle_y,