diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-10-16 01:17:12 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-10-16 01:17:12 (GMT) |
commit | 56def4aef228564ea4abcc06d4873c961921cf7d (patch) | |
tree | 5374210ab104604af37eae51af1341b5d7792b02 /src/CGAL_Nef_polyhedron.h | |
parent | 65fc1d6b01ade5e76fe712f93e2e108194c3291b (diff) |
projection: fallback to 'large thin box' if intersection with plane fails.
also implement SVG debugging output for 2d + 3d Nef Polyhedrons.
Diffstat (limited to 'src/CGAL_Nef_polyhedron.h')
-rw-r--r-- | src/CGAL_Nef_polyhedron.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CGAL_Nef_polyhedron.h b/src/CGAL_Nef_polyhedron.h index 694b420..3157ff2 100644 --- a/src/CGAL_Nef_polyhedron.h +++ b/src/CGAL_Nef_polyhedron.h @@ -20,7 +20,8 @@ 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; + std::string dump_svg() const; + std::string dump() const; int weight() const; class PolySet *convertToPolyset(); class DxfData *convertToDxfData() const; |