From 24be7e149e28e60490a28bb0653cb0c6fbf12a31 Mon Sep 17 00:00:00 2001 From: Peter Hachenberger Date: Tue, 10 Feb 2004 10:53:49 +0000 Subject: [PATCH] nef3_assertion => nef_assertion --- Packages/Nef_3/include/CGAL/Nef_3/Normalizing.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Packages/Nef_3/include/CGAL/Nef_3/Normalizing.h b/Packages/Nef_3/include/CGAL/Nef_3/Normalizing.h index f28f1d14b07..c287b79cc02 100644 --- a/Packages/Nef_3/include/CGAL/Nef_3/Normalizing.h +++ b/Packages/Nef_3/include/CGAL/Nef_3/Normalizing.h @@ -19,6 +19,7 @@ #ifndef CGAL_NORMALIZING_H #define CGAL_NORMALIZING_H +#include #include #include @@ -67,7 +68,7 @@ template CGAL::Sphere_direction normalized(CGAL::Sphere_direction& c) { CGAL::Plane_3 h = c.plane(); - CGAL_nef3_assertion(!(h.a()==0 && h.b()==0 && h.c()==0 && h.d()==0)); + CGAL_assertion(!(h.a()==0 && h.b()==0 && h.c()==0 && h.d()==0)); typedef typename R::RT RT; @@ -98,7 +99,7 @@ CGAL::Sphere_direction normalized(CGAL::Sphere_direction& c) template CGAL::Plane_3 normalized(CGAL::Plane_3& h) { - CGAL_nef3_assertion(!(h.a()==0 && h.b()==0 && h.c()==0 && h.d()==0)); + CGAL_assertion(!(h.a()==0 && h.b()==0 && h.c()==0 && h.d()==0)); typedef typename R::RT RT; @@ -137,7 +138,7 @@ template CGAL::Sphere_circle normalized(CGAL::Sphere_circle& c) { CGAL::Plane_3 h = c.plane(); - CGAL_nef3_assertion(!(h.a()==0 && h.b()==0 && h.c()==0 && h.d()==0)); + CGAL_assertion(!(h.a()==0 && h.b()==0 && h.c()==0 && h.d()==0)); typedef typename R::RT RT;