Search code examples
cgaltetrahedra

Finding faces around a vertex in CGAL?


Not sure if the question is already answered. I am working with tethedral mesh (medit mesh) file with CGAL. I need to find out the faces around the vertices in this mesh. So it will be a vertex-face iterator. Does anyone know if CGAL has this kind of iterator?


Solution

  • You can use the function finite_incident_cells and test whether the cells are in the complex using is_in_complex.