Add SQUARE macro to improve readibility for distances

This commit is contained in:
LagoLunatic
2025-08-08 21:51:30 -04:00
parent b24d8574cd
commit 5802571a56
37 changed files with 107 additions and 106 deletions
+2
View File
@@ -23,6 +23,8 @@
#define offsetof(type, member) ((size_t) & (((type*)0)->member))
#endif
#define SQUARE(x) ((x) * (x))
#ifdef __MWERKS__
#define GLUE(a, b) a##b
#define GLUE2(a, b) GLUE(a, b)