fix Bounding_volume doc bug-fix

copy-paste error from Min_sphere_of_points_d_traits_X.h
and 2D to 3D.
This commit is contained in:
Sébastien Loriot 2013-01-02 11:42:29 +01:00
parent ebd5d86c8e
commit 15ee7ca812
3 changed files with 10 additions and 10 deletions

View File

@ -5,8 +5,8 @@ namespace CGAL {
The class
`Min_sphere_of_spheres_d_traits_2<K,FT,UseSqrt,Algorithm>` is a
model for concept `MinSphereOfSpheresTraits`. It uses the \cgal
type `Point_2` to represent circles.
model for concept `MinSphereOfSpheresTraits`. It uses a pair of \cgal
`Point_2` and `FT` to represent circles.
\cgalModels `MinSphereOfSpheresTraits`

View File

@ -4,9 +4,9 @@ namespace CGAL {
\ingroup PkgBoundingVolumes
The class
`Min_sphere_of_points_d_traits_3<K,FT,UseSqrt,Algorithm>` is a
model for concept `MinSphereOfSpheresTraits`. It uses the \cgal
type `Point_3` to represent circles.
`Min_sphere_of_spheres_d_traits_3<K,FT,UseSqrt,Algorithm>` is a
model for concept `MinSphereOfSpheresTraits`. It uses a pair of \cgal
`Point_3` and `FT` to represent spheres.
\cgalModels `MinSphereOfSpheresTraits`
@ -33,7 +33,7 @@ public:
/// @{
/*!
is the constant 2, i.e. the dimension of \f$ \R^2\f$.
is the constant 3, i.e. the dimension of \f$ \R^3\f$.
*/
typedef Hidden_type D;
@ -72,7 +72,7 @@ typedef Hidden_type Point;
/*!
is a typedef to
`Point`.
`std::pair<Point,Radius>`.
*/
typedef Hidden_type Sphere;

View File

@ -5,7 +5,7 @@
\ccDefinition
The class
\ccc{Min_sphere_of_points_d_traits_3<K,FT,UseSqrt,Algorithm>} is a
\ccc{Min_sphere_of_spheres_d_traits_3<K,FT,UseSqrt,Algorithm>} is a
model for concept \ccc{MinSphereOfSpheresTraits}. It uses the {\cgal}
type \ccc{Point_3} to represent circles.
@ -35,7 +35,7 @@ requirements of type \ccc{Use_square_roots} of concept
\ccc{Algorithm} of concept \ccc{MinSphereOfSpheresTraits}: It must be either \ccc{Default_algorithm}, \ccc{LP_algorithm} or \ccc{Farthest_first_heuristic}.}
\ccConstants
\ccNestedType{D}{is the constant 2, i.e.\ the dimension of $\R^2$.}
\ccNestedType{D}{is the constant 3, i.e.\ the dimension of $\R^3$.}
\ccTypes
In addition to the types required by the concept
@ -53,7 +53,7 @@ In addition to the types required by the concept
\ccNestedType{Point}{is a typedef to \ccc{K::Point_3}.}
\ccNestedType{Sphere}{is a typedef to
\ccc{Point}.}
\ccc{std::pair<Point,Radius>}.}
\ccNestedType{Cartesian_const_iterator}{is a typedef to
\ccc{K::Cartesian_const_iterator_3}.}