cryph utilities [subset]  2.0
Subset of the full cryph package of mathematical utilities for points, vectors, and matrices
Tolerances.h
Go to the documentation of this file.
1 
6 #ifndef TOLERANCES_H
7 #define TOLERANCES_H
8 
9 static const double BasicAngleTol = 1.0E-3;
10 static const double BasicDistanceTol = 1.0E-6;
11 static const double BasicDistanceSquaredTol = 2.0E-4;
12 static const double BasicUnitTol = 1.0E-6;
13 
14 #endif