#include #include #include #include #include typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; int main(int argc, char* argv[]) { typedef CGAL::Point_2 Point; typedef std::vector LineString; typedef std::vector MultiLineString; LineString ls; { std::ifstream is((argc>1)?argv[1]:"data/linestring.wkt"); CGAL::IO::read_linestring_WKT(is, ls); is.close(); } for(Point p : ls) std::cout<2)?argv[2]:"data/multilinestring.wkt"); CGAL::IO::read_multi_linestring_WKT(is, mls); is.close(); } for(LineString l : mls) { for(const Point& p : l) std::cout<