aboutsummaryrefslogtreecommitdiff
path: root/tool_src/BspLib/EpsAreas.cpp
blob: 8f7080334ac8591005b9790435ed8140a9f113cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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

//-----------------------------------------------------------------------------