CGAL 2D APOLLONIUS diagram for Weighted Voronoi - How to generate and get the faces and vertices?
问题 I'm trying to generate weighted voronoi based on apollonius diagram. I'm using CGAL library. I couldn't find good example of how to get faces and vertices from apollonius. I have following typedefs: typedef double NT; typedef CGAL::Cartesian< NT> KernelCartes; typedef CGAL::Ray_2<KernelCartes> Cartes_Ray; typedef CGAL::Line_2<KernelCartes> Cartes_Line; typedef CGAL::Segment_2<KernelCartes> Cartes_Segment; typedef std::list<Cartes_Ray> Cartes_RayList; typedef std::list<Cartes_Line> Cartes