diff options
author | Marius Kintel <marius@kintel.net> | 2013-01-22 22:26:03 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-01-22 22:26:03 (GMT) |
commit | 32469374cfe2985f936f017a204d4e9d7dcd3e2f (patch) | |
tree | 45b3040355c5c8344c29b7a99a00a06c22dfee57 /src/cgal.h | |
parent | 2e65c6ddc5c73bfd3b76650c26268b5f54f7cd40 (diff) |
Try the CGAL EPEC kernel for 3D operations
Diffstat (limited to 'src/cgal.h')
-rw-r--r-- | src/cgal.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -48,7 +48,8 @@ typedef CGAL::Exact_predicates_exact_constructions_kernel CGAL_ExactKernel2; typedef CGAL::Polygon_2<CGAL_ExactKernel2> CGAL_Poly2; typedef CGAL::Polygon_with_holes_2<CGAL_ExactKernel2> CGAL_Poly2h; -typedef CGAL::Cartesian<NT> CGAL_Kernel3; + //typedef CGAL::Cartesian<NT> CGAL_Kernel3; +typedef CGAL::Exact_predicates_exact_constructions_kernel CGAL_Kernel3; typedef CGAL::Nef_polyhedron_3<CGAL_Kernel3> CGAL_Nef_polyhedron3; typedef CGAL_Nef_polyhedron3::Aff_transformation_3 CGAL_Aff_transformation; @@ -63,7 +64,7 @@ typedef CGAL::Iso_cuboid_3<CGAL_Kernel3> CGAL_Iso_cuboid_3; // CGAL_Nef_polyhedron2::Explorer::Point which is different than // CGAL_Kernel2::Point. Hence the suffix 'e' typedef CGAL_Nef_polyhedron2::Explorer::Point CGAL_Point_2e; -typedef CGAL::Iso_rectangle_2< CGAL::Simple_cartesian<NT> > CGAL_Iso_rectangle_2e; +typedef CGAL::Iso_rectangle_2<CGAL::Simple_cartesian<NT> > CGAL_Iso_rectangle_2e; #ifdef PREV_NDEBUG |