Search code examples
c++graphicscomputational-geometrycgal

how to simplify combinatioral map using CGAL


I want to simplify or edge collapse a mesh read from .off file as a combinatorial map using CGAL

After searching all I found is Surface_mesh_simplification , but I want simplification as a combinatorial map not as a polyhedral surface

I appreciate any help or useful links .


Solution

  • Surface_mesh_simplification is able to simply any model of the MutableFaceGraph and HalfedgeListGraph concepts (as said here).

    Linear cell complex is a model of (cf. here).

    You can start from the example given here.

    Guillaume