#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Skin_surface_3.h>
#include <CGAL/Polyhedron_3.h>
#include <CGAL/mesh_skin_surface_3.h>
#include <CGAL/Skin_surface_polyhedral_items_3.h>
#include <list>
#include <fstream>
#include "skin_surface_writer.h"
typedef Skin_surface_3::FT FT;
typedef Skin_surface_3::Weighted_point Weighted_point;
typedef Weighted_point::Point Bare_point;
> Polyhedron;
int main(int argc, char *argv[]) {
const char *filename;
if (argc < 2) {
filename = "data/caffeine.cin";
} else {
filename = argv[1];
}
std::list<Weighted_point> l;
FT shrinkfactor = 0.5;
Weighted_point wp;
std::ifstream in(filename);
while (in >> wp) l.push_back(wp);
Skin_surface_3 skin_surface(l.begin(), l.end(), shrinkfactor,
false, Traits(), false);
Polyhedron p;
std::cout << "Meshing ..." << std::endl;
std::cout << "Is closed: " << (p.is_closed() ? "Yes" : "No") << std::endl;
std::ofstream out("mesh.off");
out << p;
return 0;
}