Firstly, I am new to CGAL, but there are many C ++ programs. I would like to use CGAL to build a Voronoi diagram on points on a sphere. I implemented one of them for one of my research, but the data structure is not very universal, and I want to use a more robust industrial library like CGAL. From the CGAL document, it seems that we need to use 3D Delaunay triangulation in combination with a convex hull. In addition, I find a document Robust and Efficient Delaunay Triangulations of Points on Or Close to a Spherethat used CGAL as a base, but I could not find its code.
So can anyone provide an example on how to do this in CGAL? And does CGAL have any plan to support the spherical Delaunay and Voronoi directly with a more efficient algorithm?
Thanks in advance!
source
share