diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-10-21 17:10:06 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-10-21 17:10:06 (GMT) |
commit | 30fad0d4e44017c715cd81b807bc14598418e8a5 (patch) | |
tree | 2e01fb800f3aeeb34301a5daf949e463787404d3 /src/CGAL_Nef_polyhedron_DxfData.cc | |
parent | ddbdd58d16a4e4f0fa15096736922985e458ff99 (diff) |
remove old dump code. improve debugging svg output.
Diffstat (limited to 'src/CGAL_Nef_polyhedron_DxfData.cc')
-rw-r--r-- | src/CGAL_Nef_polyhedron_DxfData.cc | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/CGAL_Nef_polyhedron_DxfData.cc b/src/CGAL_Nef_polyhedron_DxfData.cc index 922a7ec..26b9353 100644 --- a/src/CGAL_Nef_polyhedron_DxfData.cc +++ b/src/CGAL_Nef_polyhedron_DxfData.cc @@ -81,21 +81,11 @@ DxfData *CGAL_Nef_polyhedron::convertToDxfData() const std::string CGAL_Nef_polyhedron::dump() const { if (this->dim==2) - return dump_cgal_nef_polyhedron2( *this->p2 ); - else if (this->dim==3) - return dump_cgal_nef_polyhedron3( *this->p3 ); - else - return std::string("Nef Polyhedron with dimension != 2 or 3"); -} - -std::string CGAL_Nef_polyhedron::dump_svg() const -{ - if (this->dim==2) return dump_cgal_nef_polyhedron2_svg( *this->p2 ); else if (this->dim==3) return dump_cgal_nef_polyhedron3_svg( *this->p3 ); else - return std::string("<svg><!--Nef Polyhedron with dimension != 2 or 3--></svg>"); + return std::string("Nef Polyhedron with dimension != 2 or 3"); } #endif // ENABLE_CGAL |