diff options
Diffstat (limited to '')
-rw-r--r-- | src/core/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/common.h b/src/core/common.h index e5702a2f..4b7bcb0a 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -139,6 +139,7 @@ inline float sq(float x) { return x*x; } #define SQR(x) ((x) * (x)) #define PI M_PI +#define TWOPI PI*2 #define DEGTORAD(x) ((x) * PI / 180.0f) #define RADTODEG(x) ((x) * 180.0f / PI) |