mirror of https://github.com/CGAL/cgal
small fixes
This commit is contained in:
parent
72f48d7e8d
commit
5f7e44a277
|
|
@ -29,6 +29,8 @@ public:
|
|||
Denotes type of node.
|
||||
*/
|
||||
|
||||
enum Node_type {LEAF, INTERNAL, EXTENDED_INTERNAL};
|
||||
|
||||
/*!
|
||||
Number type.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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`
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue