From eb02b2ea3adc84dac360c28151eaba99e8d1e8a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20Sch=C3=B6nherr?= Date: Wed, 2 Feb 2000 15:12:00 +0000 Subject: [PATCH] removed 'CGAL_..._cast' macros. --- Packages/Min_circle_2/web/Min_circle_2.aw | 6 +++--- Packages/Min_ellipse_2/web/Min_ellipse_2.aw | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Packages/Min_circle_2/web/Min_circle_2.aw b/Packages/Min_circle_2/web/Min_circle_2.aw index d67fff0a5e1..0cd1686f81f 100644 --- a/Packages/Min_circle_2/web/Min_circle_2.aw +++ b/Packages/Min_circle_2/web/Min_circle_2.aw @@ -16,7 +16,7 @@ @usepackage{a4wide2} @usepackage{amssymb} @usepackage{path} -@usepackage{cc_manual} +@usepackage{cc_manual,cc_manual_index} @article \input{cprog.sty} @@ -1657,7 +1657,7 @@ it is declared \ccc{friend}. dao.get( q, qx, qy); dao.get( r, rx, ry); - return( CGAL_static_cast( CGAL::Orientation, + return( static_cast< CGAL::Orientation>( CGAL::sign( ( px-rx) * ( qy-ry) - ( py-ry) * ( qx-rx)))); } @end @@ -2006,7 +2006,7 @@ it is declared \ccc{friend}. dao.get( q, qhx, qhy, qhw); dao.get( r, rhx, rhy, rhw); - return( CGAL_static_cast( CGAL::Orientation, + return( static_cast< CGAL::Orientation>( CGAL::sign( ( phx*rhw - rhx*phw) * ( qhy*rhw - rhy*qhw) - ( phy*rhw - rhy*phw) * ( qhx*rhw - rhx*qhw)))); } diff --git a/Packages/Min_ellipse_2/web/Min_ellipse_2.aw b/Packages/Min_ellipse_2/web/Min_ellipse_2.aw index 354057dde57..a2d2a2a9e0b 100644 --- a/Packages/Min_ellipse_2/web/Min_ellipse_2.aw +++ b/Packages/Min_ellipse_2/web/Min_ellipse_2.aw @@ -16,7 +16,7 @@ @usepackage{a4wide2} @usepackage{amssymb} @usepackage{path} -@usepackage{cc_manual} +@usepackage{cc_manual,cc_manual_index} @article \input{cprog.sty} @@ -1777,7 +1777,7 @@ it is declared \ccc{friend}. dao.get( q, qx, qy); dao.get( r, rx, ry); - return( CGAL_static_cast( CGAL::Orientation, + return( static_cast< CGAL::Orientation>( CGAL::sign( ( px-rx) * ( qy-ry) - ( py-ry) * ( qx-rx)))); } @end @@ -2176,7 +2176,7 @@ it is declared \ccc{friend}. dao.get( q, qhx, qhy, qhw); dao.get( r, rhx, rhy, rhw); - return( CGAL_static_cast( CGAL::Orientation, + return( static_cast< CGAL::Orientation>( CGAL::sign( ( phx*rhw - rhx*phw) * ( qhy*rhw - rhy*qhw) - ( phy*rhw - rhy*phw) * ( qhx*rhw - rhx*qhw)))); }