This file contains hidden or 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
#include <CGAL/Cartesian.h> | |
#include <CGAL/Polygon_mesh_processing/bbox.h> | |
#include <CGAL/Polygon_mesh_processing/corefinement.h> | |
#include <CGAL/Polygon_mesh_processing/measure.h> | |
#include <CGAL/Polygon_mesh_processing/orientation.h> | |
#include <CGAL/Polygon_mesh_processing/transform.h> | |
#include <CGAL/Polyhedron_3.h> | |
#include <CGAL/Surface_mesh.h> | |
typedef CGAL::Cartesian<double> Kernel; |
This file contains hidden or 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
#include <CGAL/Exact_predicates_exact_constructions_kernel.h> | |
#include <CGAL/Polygon_mesh_processing/triangulate_hole.h> | |
#include <CGAL/Polyhedron_3.h> | |
typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; | |
typedef CGAL::Polyhedron_3<Kernel> Polyhedron; | |
typedef Polyhedron::Halfedge_handle Halfedge_handle; | |
typedef Polyhedron::Facet_handle Facet_handle; | |
typedef Polyhedron::Vertex_handle Vertex_handle; |