Browse Source

Merge pull request #2180 from thinkyhead/fix_radian

Fix DEGREES macro
pull/1/head
AnHardt 9 years ago
parent
commit
a8a8f236d2
  1. 2
      Marlin/Marlin.h

2
Marlin/Marlin.h

@ -36,7 +36,7 @@
#define TEST(n,b) (((n)&BIT(b))!=0)
#define SET_BIT(n,b,value) (n) ^= ((-value)^(n)) & (BIT(b))
#define RADIANS(d) ((d)*M_PI/180.0)
#define DEGREES(r) ((d)*180.0/M_PI)
#define DEGREES(r) ((r)*180.0/M_PI)
#define NOLESS(v,n) do{ if (v < n) v = n; }while(0)
#define NOMORE(v,n) do{ if (v > n) v = n; }while(0)

Loading…
Cancel
Save