typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel;
typedef Reconstruction::Point Point;
typedef CGAL::Point_set_3<Point> Point_set;
我在cgal中声明了Point_set。但我不知道如何改变它的值,因为Point_set返回值总是常量
Point_set pts;
pts.point(i).x()=123;//cause error
pts.point(i)=Point(1,2,3);//also raise error