Computing area of all facets in CGAL::Polyhedron_3
In this post I will show how to compute area of a facet in CGAL::Polyhedron_3. ComputeFacetArea() Functor ComputeFacetArea() is a thread-safe functor for computing the area of a given facet in a CGAL::Polyhedron_3. The facet must be a planar polygon with arbitrary number of sides. We need facet’s normal vector to compute it’s area. The …