From c4f3897f47f56545f8eecbc4de0ab8767bc4955b Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Thu, 16 Feb 2017 15:57:24 -0700 Subject: [PATCH] light: Adjust epsilon --- include/common/mathlib.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/common/mathlib.hh b/include/common/mathlib.hh index 6273e580..b06af48a 100644 --- a/include/common/mathlib.hh +++ b/include/common/mathlib.hh @@ -55,8 +55,8 @@ extern const vec3_t vec3_origin; #define EQUAL_EPSILON 0.001 -#define ZERO_TRI_AREA_EPSILON 0.01f -#define POINT_EQUAL_EPSILON 0.01f +#define ZERO_TRI_AREA_EPSILON 0.05f +#define POINT_EQUAL_EPSILON 0.05f qboolean VectorCompare(const vec3_t v1, const vec3_t v2);