diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-12-14 23:20:35 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-12-14 23:20:35 (GMT) |
commit | 0a2b7ca0d4d7fb1acda9996d69b25ff6b5495856 (patch) | |
tree | 465fb326c433297bb88182de7f215ff21925cf5f /src/cgalutils.h | |
parent | f175bae46a8f15823780c5a9c89b11476acb3107 (diff) |
FIXME leaking polyset by altering functions signatures
Diffstat (limited to 'src/cgalutils.h')
-rw-r--r-- | src/cgalutils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cgalutils.h b/src/cgalutils.h index d25fd4c..50b819a 100644 --- a/src/cgalutils.h +++ b/src/cgalutils.h @@ -2,8 +2,8 @@ #define CGALUTILS_H_ #include <cgal.h> -class PolySet *createPolySetFromPolyhedron(const CGAL_Polyhedron &p); -CGAL_Polyhedron *createPolyhedronFromPolySet(const class PolySet &ps); +bool createPolySetFromPolyhedron(const CGAL_Polyhedron &p, class PolySet &ps); +bool createPolyhedronFromPolySet(const class PolySet &ps, class CGAL_Polyhedron &p); CGAL_Iso_cuboid_3 bounding_box( const CGAL_Nef_polyhedron3 &N ); CGAL_Iso_rectangle_2e bounding_box( const CGAL_Nef_polyhedron2 &N ); |