Skip to content

Commit

Permalink
馃悰 Reorder FLOAT_SQ
Browse files Browse the repository at this point in the history
Followup to 5f96dff
  • Loading branch information
thinkyhead committed May 16, 2024
1 parent 7e8007f commit a33112a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/core/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
#define HYPOT2(x,y) (sq(x)+sq(y))
#define NORMSQ(x,y,z) (sq(x)+sq(y)+sq(z))

#define FLOAT_SQ(I) float(sq(I))
#define FLOAT_SQ(I) sq(float(I))
#define CIRCLE_AREA(R) (float(M_PI) * FLOAT_SQ(R))
#define CIRCLE_CIRC(R) (2 * float(M_PI) * float(R))

Expand Down

0 comments on commit a33112a

Please sign in to comment.