From c7d7cf22c1a0fd131f94b138ff2810edcec1037c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernd=20G=C3=A4rtner?= Date: Mon, 11 Jun 2007 12:29:09 +0000 Subject: [PATCH] Cartesian->Homogeneous with ring NT --- .../examples/Polytope_distance_d/polytope_distance_d.cpp | 4 ++-- .../Polytope_distance_d/polytope_distance_d_fast_exact.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d.cpp b/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d.cpp index 95109e50453..ca1d6f5746b 100644 --- a/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d.cpp +++ b/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d.cpp @@ -2,7 +2,7 @@ // as input type and some internal EXACT floating point type #include #include -#include +#include #include #include @@ -15,7 +15,7 @@ typedef CGAL::MP_Float ET; #endif // use an EXACT kernel... -typedef CGAL::Simple_cartesian K; +typedef CGAL::Homogeneous K; typedef K::Point_3 Point; // ...and the traits class based on the exact kernel typedef CGAL::Polytope_distance_d_traits_3 Traits; diff --git a/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d_fast_exact.cpp b/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d_fast_exact.cpp index 95ee98de145..a6ab43261bb 100644 --- a/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d_fast_exact.cpp +++ b/Polytope_distance_d/examples/Polytope_distance_d/polytope_distance_d_fast_exact.cpp @@ -4,7 +4,7 @@ // internal computations #include #include -#include +#include #include #include @@ -17,7 +17,7 @@ typedef CGAL::MP_Float ET; #endif // use an inexact kernel... -typedef CGAL::Simple_cartesian K; +typedef CGAL::Homogeneous K; typedef K::Point_3 Point; // ... and the EXACT traits class based on the inexcat kernel typedef CGAL::Polytope_distance_d_traits_3 Traits;