mirror of https://github.com/CGAL/cgal
used new Construct_centroid from kerenl
This commit is contained in:
parent
3f9a7b7ee6
commit
e75bf0e3d2
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue