Court is now in session

This commit is contained in:
2021-05-06 21:13:37 -07:00
parent f5522d64a7
commit 4a3b6c2f98
15 changed files with 150 additions and 24 deletions

View File

@ -8,4 +8,6 @@
#define mathMod(a,b) (a%b+b)%b
#define mathMax(a,b) (a<b?b:a)
#define mathMin(a,b) (a>b?b:a)
#define mathAbs(n) (n<0?-n:n)
#define mathAbs(n) (n<0?-n:n)
#define mathDeg2Rad(n) (n * M_PI / 180.0)
#define mathRad2Deg(n) (n * 180 / M_PI)