From 78883c69d907ba51f6f73a6fc236ca360d5e1a0f Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 11 Apr 2024 11:28:49 +0100 Subject: [PATCH] fixes after review --- AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h | 13 ------------- AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h | 13 ------------- 2 files changed, 26 deletions(-) diff --git a/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h b/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h index 4fadb1643e4..797b7451df7 100644 --- a/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h +++ b/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_2.h @@ -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. diff --git a/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h b/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h index 737d5c3e17c..affafe8609a 100644 --- a/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h +++ b/AABB_tree/doc/AABB_tree/Concepts/AABBGeomTraits_3.h @@ -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.