cleanup: removed commented #include statements

removed #include <CGAL/Segment_2.h> as this is done by
the chosen kernel
This commit is contained in:
Andreas Fabri 2001-07-11 13:49:28 +00:00
parent 96e1c5b588
commit 450da2f2e8
1 changed files with 2 additions and 13 deletions

View File

@ -26,17 +26,6 @@
#define CGAL_ALPHA_SHAPE_EUCLIDEAN_TRAITS_H
#include <CGAL/basic.h>
//#include <CGAL/Cartesian.h>
//#include <CGAL/Homogeneous.h>
//#include <CGAL/Integer.h>
//#include <CGAL/Rational.h>
//#include <CGAL/Fixed.h>
#include <CGAL/squared_distance_2.h> // to avoid a g++ problem
#include <CGAL/Point_2.h>
#include <CGAL/predicates_on_points_2.h>
#include <CGAL/Triangle_2.h>
#include <CGAL/Segment_2.h>
#include <CGAL/Triangulation_euclidean_traits_2.h>
@ -54,12 +43,12 @@ class Compute_squared_radius_2
public:
typedef return_type result_type;
result_type operator()(const T& p, const T& q, const T& r)
result_type operator()(const T& p, const T& q, const T& r) const
{
return CGAL::squared_radius(p, q, r);
}
result_type operator()(const T& p, const T& q)
result_type operator()(const T& p, const T& q) const
{
return CGAL::squared_radius_smallest_circumcircle(p, q);
}