From c068f22329d5cc722622a2183bbb22eef2093df7 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 24 Aug 2026 11:16:07 +0200 Subject: initial import --- tool_src/BspLib/EpsAreas.cpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tool_src/BspLib/EpsAreas.cpp (limited to 'tool_src/BspLib/EpsAreas.cpp') 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 + +//----------------------------------------------------------------------------- -- cgit v1.2.3