diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2013-12-15 03:12:01 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2013-12-15 03:12:01 (GMT) |
commit | 804ec858d9bd832629a2b00ebe689f2d11e4cbe5 (patch) | |
tree | 72ba912a89a66345025aa1ff7540b7d482a742d9 /src/cgalutils.h | |
parent | 09d60fd5afd54f1537ff6f5349f6466be8401d01 (diff) |
triangulation of near-planar PolySet faces
Diffstat (limited to 'src/cgalutils.h')
-rw-r--r-- | src/cgalutils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cgalutils.h b/src/cgalutils.h index 0e7fbb5..8f7e4dd 100644 --- a/src/cgalutils.h +++ b/src/cgalutils.h @@ -2,8 +2,9 @@ #define CGALUTILS_H_ #include <cgal.h> -bool createPolySetFromPolyhedron(const CGAL_Polyhedron &p, class PolySet &ps); -bool createPolyhedronFromPolySet(const class PolySet &ps, CGAL_Polyhedron &p); +#include "polyset.h" +bool createPolySetFromPolyhedron(const CGAL_Polyhedron &p, PolySet &ps); +bool createPolyhedronFromPolySet(const PolySet &ps, 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 ); |