diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-19 21:36:49 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-19 21:36:49 (GMT) |
commit | ef51ee8a7fc855bd06f82ac24fdcab5fa2a98815 (patch) | |
tree | 86aeee9abc0b1ce6c3a4aa1eded9208348f77873 /src/dxftess-cgal.cc | |
parent | c6eeb1a1c5da072e1c0a77d30892e4ee95ed9bde (diff) |
use the CGAL triangulation with intersections enabled. attempt to fix issue #159
Diffstat (limited to 'src/dxftess-cgal.cc')
-rw-r--r-- | src/dxftess-cgal.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dxftess-cgal.cc b/src/dxftess-cgal.cc index f221e3a..9cd3bfd 100644 --- a/src/dxftess-cgal.cc +++ b/src/dxftess-cgal.cc @@ -24,7 +24,7 @@ typedef CGAL::Exact_predicates_inexact_constructions_kernel K; typedef CGAL::Triangulation_vertex_base_2<K> Vb; typedef CGAL::Delaunay_mesh_face_base_2<K> Fb; typedef CGAL::Triangulation_data_structure_2<Vb, Fb> Tds; -typedef CGAL::Constrained_Delaunay_triangulation_2<K, Tds> CDT; +typedef CGAL::Constrained_Delaunay_triangulation_2<K, Tds, CGAL::Exact_predicates_tag > CDT; //typedef CGAL::Delaunay_mesh_criteria_2<CDT> Criteria; typedef CDT::Vertex_handle Vertex_handle; |