#include <CGAL/Polyhedron_3.h>
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Mean_curvature_flow_skeletonization.h>
 
#include <fstream>
 
 
typedef boost::graph_traits<Polyhedron>::vertex_descriptor    vertex_descriptor;
 
typedef Skeletonization::Skeleton                             Skeleton;
 
typedef Skeleton::vertex_descriptor                           Skeleton_vertex;
typedef Skeleton::edge_descriptor                             Skeleton_edge;
 
 
int main(int argc, char* argv[])
{
  std::ifstream input((argc>1)?argv[1]:"data/elephant.off");
  Polyhedron tmesh;
  input >> tmesh;
  {
    std::cout << "Input geometry is not triangulated." << std::endl;
    return EXIT_FAILURE;
  }
 
  Skeleton skeleton;
  Skeletonization mcs(tmesh);
 
  
  mcs.contract_geometry();
 
  
  mcs.collapse_edges();
  mcs.split_faces();
 
  
  mcs.detect_degeneracies();
 
  
  mcs.contract();
 
  
  mcs.contract_until_convergence();
 
  
  
  mcs.convert_to_skeleton(skeleton);
 
  std::cout << "Number of vertices of the skeleton: " << boost::num_vertices(skeleton) << "\n";
  std::cout << "Number of edges of the skeleton: " << boost::num_edges(skeleton) << "\n";
 
  
  std::ofstream output("skel-poly.cgal");
  {
    const Point& s = skeleton[source(e, skeleton)].point;
    const Point& t = skeleton[target(e, skeleton)].point;
    output << "2 "<< s << " " << t << "\n";
  }
  output.close();
 
  
  output.open("correspondance-poly.cgal");
    for(vertex_descriptor vd : skeleton[v].vertices)
      output << "2 " << skeleton[v].point << "  " << get(CGAL::vertex_point, tmesh, vd)  << "\n";
 
  return EXIT_SUCCESS;
}