diff options
author | Marius Kintel <marius@kintel.net> | 2011-08-02 23:12:54 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-08-02 23:12:54 (GMT) |
commit | a35c801eec98803bf21d0d6c8d2748f0d9ccd507 (patch) | |
tree | fb9fc3533c84011a99400055c5ff128ac567de04 /src/csgops.cc | |
parent | e43315363d4e392d54df77d500cf26ba53a7a599 (diff) |
Improved (more detailed) CGAL error messages
Diffstat (limited to 'src/csgops.cc')
-rw-r--r-- | src/csgops.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csgops.cc b/src/csgops.cc index 55d91d2..8c295f9 100644 --- a/src/csgops.cc +++ b/src/csgops.cc @@ -118,7 +118,7 @@ CGAL_Nef_polyhedron CsgNode::render_cgal_nef_polyhedron() const cgal_nef_cache.insert(cache_id, new cgal_nef_cache_entry(N), N.weight()); } catch (CGAL::Assertion_exception e) { - PRINTF("ERROR: Illegal polygonal object - make sure all polygons are defined with the same winding order. Skipping affected object."); + PRINTF("CGAL error: %s", e.what()); } CGAL::set_error_behaviour(old_behaviour); |