#include <CGAL/AABB_intersections.h>
#include <debug.h>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Mesh_triangulation_3.h>
#include <CGAL/Mesh_complex_3_in_triangulation_3.h>
#include <CGAL/Mesh_criteria_3.h>
#include <CGAL/Labeled_mesh_domain_3.h>
#include <CGAL/Mesh_3/polyhedral_to_labeled_function_wrapper.h>
#include <CGAL/make_mesh_3.h>
#include <CGAL/IO/Polyhedron_iostream.h>
#include <CGAL/IO/File_medit.h>
typedef CGAL::Mesh_3::Polyhedral_to_labeled_function_wrapper<Polyhedron, K> Polyhedral_wrapper;
typedef Mesh_criteria::Facet_criteria Facet_criteria;
typedef Mesh_criteria::Cell_criteria Cell_criteria;
int main()
{
  
  Polyhedron polyhedron;
  std::ifstream input("data/elephant.off");
  input >> polyhedron;
  input.close();
  
  Polyhedral_wrapper polyhedral_wrapper(polyhedron, 3, 0.01, -0.01);
  Mesh_domain domain(polyhedral_wrapper, polyhedral_wrapper.bounding_sphere(), 1e-4);
  
  Facet_criteria facet_criteria(20, 5, 0.002); 
  Cell_criteria cell_criteria(4, 0.05); 
  Mesh_criteria criteria(facet_criteria, cell_criteria);
  
  C3t3 c3t3 = CGAL::make_mesh_3<C3t3>(domain, criteria);
  
  std::ofstream medit_file("out.mesh");
  CGAL::output_to_medit(medit_file, c3t3);
  return 0;
}