如何通过修改CGAL的Point Value?

时间:2017-12-01 09:32:03

标签: c++ computer-vision cgal

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

0 个答案:

没有答案