#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Point_set_3.h>
#include <CGAL/IO/XYZ.h>
#include <iostream>
#include <string>
int main ()
{
Point_set points_only, points_with_normal;
assert(! points_only.has_normal_map());
assert(points_with_normal.has_normal_map());
return EXIT_SUCCESS;
}
A collection of points with dynamically associated properties.
Definition: Point_set_3.h:129
bool read_XYZ(std::istream &is, OutputIterator output, const NamedParameters &np=parameters::default_values())