c++ - CGAL loop over facets sharing an edge -
hello fellow stackers,
i write function loops on finite edges of cgal regular 3d triangulation, , calculates angles between pairs of faces (facets) sharing edge. in reference guide found method called incident_facets should give circulator facets incident specific edge. i'm not 100% that method i'm looking for, of all, have no idea how use it. perhaps show me how works in practice? also, know if there built-in cgal method loops on finite facet pairs, don't have write out explicitly?
thanks
no, there no built-in cgal method loops on finite facet pairs.
you can find example use of circulator there http://doc.cgal.org/latest/triangulation_2/index.html#title9
in case, easier iterate on finite cells , @ 6 pairs of facets in each tetrahedron.
best,
Comments
Post a Comment