Muhammad Razib
Muhammad Razib

Reputation: 1305

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?

Upvotes: 0

Views: 538

Answers (1)

sloriot
sloriot

Reputation: 6303

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

Upvotes: 1

Related Questions