Delaunator
2D Delaunay Triangulation in C++ with Python wrapper.
 All Classes Namespaces Functions
commons.h
1 #ifndef COMMONS_H_INCLUDED
2 #define COMMONS_H_INCLUDED
3 
4 
5 
6 /*
7  * LIBRARIES
8  */
9 // STD LIB
10 #include <iostream>
11 #include <cstdlib>
12 #include <fstream>
13 #include <sstream>
14 #include <cassert>
15 #include <cmath>
16 #include <climits>
17 #include <vector>
18 #include <unordered_set>
19 #include <queue>
20 #include <list>
21 #include <algorithm>
22 // LOCAL MODULES
23 #include "utils.h"
24 
25 
26 
27 /*
28  * DEFINES
29  */
30 #define MESH_MAX_POINT MAX_INT-1
31 #define EPSILON 0.001
32 #define FOLLOW_SEARCH
33 
34 
35 
36 /*
37  * PREDECLARATIONS
38  */
39 // Verbose level. Greater it is, deeper and accurate logs are.
40 //short VERBOSE_LEVEL = 10;
41 
42 
43 
44 
45 
46 #endif