File indexing completed on 2025-01-18 10:10:15
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef ROOT_Math_Delaunay2D
0015 #define ROOT_Math_Delaunay2D
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026 #include <map>
0027 #include <vector>
0028 #include <set>
0029 #include <functional>
0030
0031 #ifdef HAS_CGAL
0032
0033
0034
0035 #pragma push_macro("PTR")
0036 #undef PTR
0037
0038 #include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
0039 #include <CGAL/Delaunay_triangulation_2.h>
0040 #include <CGAL/Triangulation_vertex_base_with_info_2.h>
0041 #include <CGAL/Interpolation_traits_2.h>
0042 #include <CGAL/natural_neighbor_coordinates_2.h>
0043 #include <CGAL/interpolation_functions.h>
0044
0045 #pragma pop_macro("PTR")
0046 #endif
0047
0048 #ifdef THREAD_SAFE
0049 #include