summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2019-07-11 02:22:01 +0200
committerFire-Head <Fire-Head@users.noreply.github.com>2019-07-11 02:22:01 +0200
commita644c4e9ceb440f53e31dd39f11a9a3c859ffb44 (patch)
tree8c94be03df7ea2887212e244860a83795a4b21c4 /src/core
parentthe great reorganization (diff)
downloadre3-a644c4e9ceb440f53e31dd39f11a9a3c859ffb44.tar
re3-a644c4e9ceb440f53e31dd39f11a9a3c859ffb44.tar.gz
re3-a644c4e9ceb440f53e31dd39f11a9a3c859ffb44.tar.bz2
re3-a644c4e9ceb440f53e31dd39f11a9a3c859ffb44.tar.lz
re3-a644c4e9ceb440f53e31dd39f11a9a3c859ffb44.tar.xz
re3-a644c4e9ceb440f53e31dd39f11a9a3c859ffb44.tar.zst
re3-a644c4e9ceb440f53e31dd39f11a9a3c859ffb44.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/common.h b/src/core/common.h
index 79626acb..33ebcdbb 100644
--- a/src/core/common.h
+++ b/src/core/common.h
@@ -138,6 +138,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)