diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-01-28 02:57:50 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-01-28 02:57:50 (GMT) |
commit | 6f0a0fff9ec271ec9da31f319f9dfabdae569d1e (patch) | |
tree | dc8a0a0cca8d2366d85db8cdecc15d38c4815245 /src/dxftess-cgal.cc | |
parent | 1e64dddf1ea30282c89de7f35854a68614234652 (diff) |
make it clear to the user that they can't rely on this behavior
Diffstat (limited to 'src/dxftess-cgal.cc')
-rw-r--r-- | src/dxftess-cgal.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dxftess-cgal.cc b/src/dxftess-cgal.cc index e40f1d3..0197473 100644 --- a/src/dxftess-cgal.cc +++ b/src/dxftess-cgal.cc @@ -166,8 +166,10 @@ void dxf_tesselate(PolySet *ps, DxfData &dxf, double rot, bool up, bool /* do_tr } } - if ( duplicate_vertices > 0 ) - PRINT( "WARNING: Duplicate vertices and/or intersecting lines found during DXF Tessellation. Render may be incorrect." ); + if ( duplicate_vertices > 0 ) { + PRINT( "WARNING: Duplicate vertices and/or intersecting lines found during DXF Tessellation." ); + PRINT( "WARNING: Modify the polygon to be a Simple Polygon. Render is incomplete." ); + } } catch (const CGAL::Assertion_exception &e) { |