From 83818b18a1fa1e8a00332489e31d346101b6fe9e Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 30 Mar 2015 20:56:31 +0200 Subject: Another massive cleanup Drops unused functions, fixes function visibility. --- math.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'math.h') diff --git a/math.h b/math.h index d6e3211..a7a658e 100644 --- a/math.h +++ b/math.h @@ -22,6 +22,7 @@ #include #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 */ -- cgit v1.2.3