Skip to content
Snippets Groups Projects
Commit 297a59db authored by Marco Biasini's avatar Marco Biasini
Browse files

set EPSILON depending on precision of floating point numbers

parent 3bab5737
Branches
Tags
No related merge requests found
......@@ -22,7 +22,11 @@
#include <ost/base.hh>
namespace geom {
#if OST_DOUBLE_PRECISION
static const Real EPSILON=1e-10;
#else
static const Real EPSILON=1e-6;
#endif
} // ns
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment