#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Point_set_3.h>
#include <CGAL/draw_point_set_3.h>
#include <fstream>
typedef Kernel::FT FT;
int main (int argc, char** argv)
{
const std::string filename = argc > 1 ? argv[1] : CGAL::data_file_path("points_3/oni.pwn");
Point_set point_set;
{
std::cerr << "Can't read input file " << filename << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
A collection of points with dynamically associated properties.
Definition: Point_set_3.h:123
void draw(const PS &ps, const GSOptions &gso)
opens a new window and draws a point set.
bool read_point_set(const std::string &fname, CGAL::Point_set_3< Point, Vector > &ps, const NamedParameters &np=parameters::default_values())
reads the point set from an input file.
Definition: IO.h:122