#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Surface_mesh.h>
#include <CGAL/Extreme_points_traits_adapter_3.h>
#include <CGAL/convex_hull_3.h>
#include <vector>
#include <fstream>
typedef K::Point_3 Point_3;
int main(int argc, char* argv[])
{
const char* filename = (argc>1) ? argv[1] : "data/star.off";
Mesh sm;
{
std::cerr<< "Cannot open input file." <<std::endl;
return 1;
}
std::vector<Mesh::Vertex_index> extreme_vertices;
std::cout << "There are " << extreme_vertices.size() << " extreme vertices in this mesh." << std::endl;
return 0;
}