fixes after review

This commit is contained in:
Andreas Fabri 2024-04-11 11:28:49 +01:00
parent aad631a533
commit 78883c69d9
2 changed files with 0 additions and 26 deletions

View File

@ -82,15 +82,6 @@ which compares the distance between `p1` and `p2`, to the distance between `p1`
*/
typedef unspecified_type Compare_distance_2;
/*!
A functor object to compute the squared radius of a circle.
Provides the operator:
`FT operator()(const Circle_2& s),`
which returns the squared radius of `s`.
*/
typedef unspecified_type Compute_squared_radius_2;
/*!
A functor object to compute the squared distance between two points. Provides the operator:
@ -159,10 +150,6 @@ returns the compare distance predicate.
*/
Compare_distance_2 compare_distance_2_object();
/*!
returns the squared radius functor.
*/
Compute_squared_radius_2 compute_squared_radius_2_object();
/*!
returns the squared distance functor.

View File

@ -82,15 +82,6 @@ which compares the distance between `p1` and `p2`, to the distance between `p1`
*/
typedef unspecified_type Compare_distance_3;
/*!
A functor object to compute the squared radius of a sphere.
Provides the operator:
`FT operator()(const Sphere_3& s),`
which returns the squared radius of `s`.
*/
typedef unspecified_type Compute_squared_radius_3;
/*!
A functor object to compute the squared distance between two points. Provides the operator:
@ -167,10 +158,6 @@ returns the compare distance predicate.
*/
Compare_distance_3 compare_distance_3_object();
/*!
returns the squared radius functor.
*/
Compute_squared_radius_3 compute_squared_radius_3_object();
/*!
returns the squared distance functor.