diff options
Diffstat (limited to 'tool_src/BspLib/EpsAreas.cpp')
| -rw-r--r-- | tool_src/BspLib/EpsAreas.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tool_src/BspLib/EpsAreas.cpp b/tool_src/BspLib/EpsAreas.cpp new file mode 100644 index 0000000..8f70803 --- /dev/null +++ b/tool_src/BspLib/EpsAreas.cpp @@ -0,0 +1,28 @@ +//----------------------------------------------------------------------------- +// BSPLIB MODULE: EpsAreas.cpp +// +// Copyright (c) 1998 by Markus Hadwiger +// All Rights Reserved. +//----------------------------------------------------------------------------- + +// bsplib headers +#include "BspLibDefs.h" + + +BSPLIB_NAMESPACE_BEGIN + + +// epsilon area specifications ------------------------------------------------ +// +double EpsAreas::eps_scalarproduct = 1e-7; +double EpsAreas::eps_planethickness = 1e-7; +double EpsAreas::eps_vanishdenominator = 1e-7; +double EpsAreas::eps_vanishcomponent = 1e-7; +double EpsAreas::eps_pointonline = 1e-5; +double EpsAreas::eps_pointonlineseg = 1e-4; +double EpsAreas::eps_vertexmergearea = 1e-4; + + +BSPLIB_NAMESPACE_END + +//----------------------------------------------------------------------------- |
