diff options
Diffstat (limited to 'src/cgal.cc')
-rw-r--r-- | src/cgal.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cgal.cc b/src/cgal.cc index ad33a3e..190ebd0 100644 --- a/src/cgal.cc +++ b/src/cgal.cc @@ -3,8 +3,11 @@ /*! Creates a new PolySet and initializes it with the data from this polyhedron + + This method is not const since convert_to_Polyhedron() wasn't const + in earlier versions of CGAL. */ -PolySet *CGAL_Nef_polyhedron::convertToPolyset() const +PolySet *CGAL_Nef_polyhedron::convertToPolyset() { PolySet *ps = new PolySet(); CGAL_Polyhedron P; |