used new Construct_centroid from kerenl

This commit is contained in:
Susan Hert 2001-06-19 14:14:48 +00:00
parent 3f9a7b7ee6
commit e75bf0e3d2
2 changed files with 4 additions and 1 deletions

View File

@ -93,7 +93,8 @@ class Convex_hull_traits_3
typedef typename R::Construct_plane_3 Construct_plane_3;
typedef typename R::Construct_vector_3 Construct_vector_3;
typedef typename R::Construct_triangle_3 Construct_triangle_3;
typedef Construct_centroid_3<Point_3> Construct_centroid_3;
typedef typename R::Construct_centroid_3<Point_3>
Construct_centroid_3;
typedef Construct_orthogonal_vector_3<Plane_3, Vector_3>
Construct_orthogonal_vector_3;

View File

@ -34,6 +34,7 @@
CGAL_BEGIN_NAMESPACE
/*
template <class R_>
class Construct_centroid_3
{
@ -62,6 +63,7 @@ class Construct_centroid_3
(p.hz() + q.hz() + r.hz())/FT(3));
}
};
*/
template <class Plane_3, class Vector_3>
class Construct_orthogonal_vector_3