diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-08-24 11:16:07 +0200 |
| commit | c068f22329d5cc722622a2183bbb22eef2093df7 (patch) | |
| tree | 12d56c1aede67988a55e241364606bfbb4dba933 /tool_src/BspLib/EpsAreas.cpp | |
| download | openparsec-main.tar.xz openparsec-main.zip | |
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 + +//----------------------------------------------------------------------------- |
