This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef CGAL::Exact_predicates_inexact_constructions_kernel K; | |
typedef K::Point_3 Point_3; | |
typedef CGAL::Surface_mesh<Point_3> Mesh; | |
typedef boost::graph_traits<Mesh>::vertex_descriptor vertex_descriptor; | |
typedef boost::graph_traits<Mesh>::vertex_iterator vertex_iterator; | |
typedef boost::graph_traits<Mesh>::halfedge_iterator halfedge_iterator; | |
typedef CGAL::Surface_mesh_deformation<Mesh, CGAL::Default, CGAL::Default, CGAL::Deformation_algorithm_tag::SRE_ARAP> Surface_mesh_deformation; | |