From dc420e69fca7df4ab5775d2b3bf5a21b6cff4239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 27 Dec 2010 18:16:30 +0100 Subject: [PATCH] Even smaller precision for floating point comparison. --- src/Math/constants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Math/constants.h b/src/Math/constants.h index 1fd29eb6f..64dfeb0b0 100644 --- a/src/Math/constants.h +++ b/src/Math/constants.h @@ -25,7 +25,7 @@ namespace Magnum { namespace Math { #define PI 3.1415926535 /** @brief Maximal tolerance when comparing doubles */ -#define EPSILON 1.0e-8 +#define EPSILON 1.0e-7 }}