diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2012-02-11 02:15:16 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2012-02-11 02:15:16 (GMT) |
commit | a76d5b02bdb8cd7a9d32c2e204c86726d1384c63 (patch) | |
tree | cb4d936cf0cfede1d7f07f18ab3edfc0b35f6233 /src/CGAL_Nef_polyhedron.h | |
parent | a83fda0c3d9e92a6e47622cd1c2fdeebdfbb8c1a (diff) |
use Nef_polyhedron3 intersection to do projection(cut).
Diffstat (limited to 'src/CGAL_Nef_polyhedron.h')
-rw-r--r-- | src/CGAL_Nef_polyhedron.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CGAL_Nef_polyhedron.h b/src/CGAL_Nef_polyhedron.h index f93905f..0b0784e 100644 --- a/src/CGAL_Nef_polyhedron.h +++ b/src/CGAL_Nef_polyhedron.h @@ -3,6 +3,7 @@ #include "cgalfwd.h" #include "memory.h" +#include <string> class CGAL_Nef_polyhedron { @@ -18,6 +19,7 @@ public: CGAL_Nef_polyhedron &operator-=(const CGAL_Nef_polyhedron &other); CGAL_Nef_polyhedron &minkowski(const CGAL_Nef_polyhedron &other); CGAL_Nef_polyhedron copy() const; + std::string dump_p2() const; int weight() const; class PolySet *convertToPolyset(); class DxfData *convertToDxfData() const; |