From 5f7e44a2771fcf1663e336c28e7a1920c5adc40b Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Fri, 23 Nov 2012 14:30:41 +0100 Subject: [PATCH] small fixes --- Spatial_searching/doc/Spatial_searching/CGAL/Kd_tree_node.h | 2 ++ .../doc/Spatial_searching/CGAL/Plane_separator.h | 3 +-- .../doc/Spatial_searching/CGAL/Point_container.h | 5 +++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Spatial_searching/doc/Spatial_searching/CGAL/Kd_tree_node.h b/Spatial_searching/doc/Spatial_searching/CGAL/Kd_tree_node.h index 040daa91d91..a2709cd189c 100644 --- a/Spatial_searching/doc/Spatial_searching/CGAL/Kd_tree_node.h +++ b/Spatial_searching/doc/Spatial_searching/CGAL/Kd_tree_node.h @@ -29,6 +29,8 @@ public: Denotes type of node. */ +enum Node_type {LEAF, INTERNAL, EXTENDED_INTERNAL}; + /*! Number type. */ diff --git a/Spatial_searching/doc/Spatial_searching/CGAL/Plane_separator.h b/Spatial_searching/doc/Spatial_searching/CGAL/Plane_separator.h index 9a60b4bd8a7..3f3c7dc127b 100644 --- a/Spatial_searching/doc/Spatial_searching/CGAL/Plane_separator.h +++ b/Spatial_searching/doc/Spatial_searching/CGAL/Plane_separator.h @@ -6,8 +6,7 @@ namespace CGAL { The class `Plane_separator` implements a plane separator, i.e., a hyperplane that is used to separate two half spaces. -\cgalAdvanced This -hyperplane is defined by a cutting dimension `d` and a cutting +This hyperplane is defined by a cutting dimension `d` and a cutting value `v` as `xd=v`, where `v` denotes the `d`th coordinate value. \cgalModels `SpatialSeparator` diff --git a/Spatial_searching/doc/Spatial_searching/CGAL/Point_container.h b/Spatial_searching/doc/Spatial_searching/CGAL/Point_container.h index 1ae10ae76d5..e1105ba90f6 100644 --- a/Spatial_searching/doc/Spatial_searching/CGAL/Point_container.h +++ b/Spatial_searching/doc/Spatial_searching/CGAL/Point_container.h @@ -3,8 +3,9 @@ namespace CGAL { /*! \ingroup AdvancedClasses -A custom container for points used to build a tree. \cgalAdvanced Each -point container holds the points from a rectangle associated with a +A custom container for points used to build a tree. + +Each point container holds the points from a rectangle associated with a node of the tree. In the remainder of this reference page this rectangle is called the associated rectangle. Provides a method to split a container and a number of methods to support the