From 046aac38e9d4ca239bbb27bccd2aefbc04fd534e Mon Sep 17 00:00:00 2001 From: Monique Teillaud Date: Wed, 1 Mar 2006 13:14:32 +0000 Subject: [PATCH] _2 removed --- .../include/CGAL/global_intersect_2.h | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/Curved_kernel/include/CGAL/global_intersect_2.h b/Curved_kernel/include/CGAL/global_intersect_2.h index 3a9ccb41c75..0d36ef04f99 100644 --- a/Curved_kernel/include/CGAL/global_intersect_2.h +++ b/Curved_kernel/include/CGAL/global_intersect_2.h @@ -31,9 +31,9 @@ template< class CK, class OutputIterator> inline OutputIterator -intersect_2( const typename CK::Circle_2 & c1, - const typename CK::Circle_2 & c2, - OutputIterator res ) +intersect( const typename CK::Circle_2 & c1, + const typename CK::Circle_2 & c2, + OutputIterator res ) { return CK::Intersect_2()(c1,c2,res); } @@ -41,9 +41,9 @@ intersect_2( const typename CK::Circle_2 & c1, template< class CK, class OutputIterator> inline OutputIterator -intersect_2( const typename CK::Line_arc_2 & c1, - const typename CK::Line_arc_2 & c2, - OutputIterator res ) +intersect( const typename CK::Line_arc_2 & c1, + const typename CK::Line_arc_2 & c2, + OutputIterator res ) { return CK::Intersect_2()(c1,c2,res); } @@ -51,9 +51,9 @@ intersect_2( const typename CK::Line_arc_2 & c1, template< class CK, class OutputIterator> inline OutputIterator -intersect_2( const typename CK::Circular_arc_2 & c1, - const typename CK::Circular_arc_2 & c2, - OutputIterator res ) +intersect( const typename CK::Circular_arc_2 & c1, + const typename CK::Circular_arc_2 & c2, + OutputIterator res ) { return CK::Intersect_2()(c1,c2,res); } @@ -62,18 +62,18 @@ intersect_2( const typename CK::Circular_arc_2 & c1, template< class CK, class OutputIterator> inline OutputIterator -intersect_2( const typename CK::Line_arc_2 & c1, - const typename CK::Circle_2 & c2, - OutputIterator res ) +intersect( const typename CK::Line_arc_2 & c1, + const typename CK::Circle_2 & c2, + OutputIterator res ) { return CK::Intersect_2()(c1,c2,res); } template< class CK, class OutputIterator> inline OutputIterator -intersect_2( const typename CK::Circle_2 & c1, - const typename CK::Line_arc_2 & c2, - OutputIterator res ) +intersect( const typename CK::Circle_2 & c1, + const typename CK::Line_arc_2 & c2, + OutputIterator res ) { return CK::Intersect_2()(c1,c2,res); } @@ -81,18 +81,18 @@ intersect_2( const typename CK::Circle_2 & c1, template< class CK, class OutputIterator> inline OutputIterator -intersect_2( const typename CK::Line_arc_2 & c1, - const typename CK::Circular_arc_2 & c2, - OutputIterator res ) +intersect( const typename CK::Line_arc_2 & c1, + const typename CK::Circular_arc_2 & c2, + OutputIterator res ) { return CK::Intersect_2()(c1,c2,res); } template< class CK, class OutputIterator> inline OutputIterator -intersect_2( const typename CK::Circular_arc_2 & c1, - const typename CK::Line_arc_2 & c2, - OutputIterator res ) +intersect( const typename CK::Circular_arc_2 & c1, + const typename CK::Line_arc_2 & c2, + OutputIterator res ) { return CK::Intersect_2()(c1,c2,res); }