summaryrefslogtreecommitdiff
path: root/math.h
diff options
context:
space:
mode:
Diffstat (limited to 'math.h')
-rw-r--r--math.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/math.h b/math.h
index d6e3211..a7a658e 100644
--- a/math.h
+++ b/math.h
@@ -22,6 +22,7 @@
#include <assert.h>
#include "build/config.h"
+#include "vector.h"
#ifdef HAVE_AMDLIBM
#define REPLACE_WITH_AMDLIBM
@@ -31,6 +32,7 @@
#endif
#define clamp(a,min,max) (a > max ? max : (a < min ? min : a))
+#define EPS (1e-10)
/* Apply affine coordinate transformation
*/