Skip to content

Commit

Permalink
Split function docs into more sections
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Jul 1, 2020
1 parent 5e1c66a commit 38389e0
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions Octree/include/CGAL/Octree/Octree_node.h
Expand Up @@ -162,11 +162,9 @@ namespace CGAL {

/// @}

/// \name Accessors
/// \name Child Accessors
/// @{

bool is_leaf() const { return (m_children == NULL); }

Node &operator[](int index) {
return (*m_children)[index];
}
Expand All @@ -175,6 +173,11 @@ namespace CGAL {
return (*m_children)[index];
}

/// @}

/// \name Content Accessors
/// @{

Range_iterator &begin() { return m_points_begin; }

const Range_iterator &begin() const { return m_points_begin; }
Expand All @@ -183,6 +186,13 @@ namespace CGAL {

const Range_iterator &end() const { return m_points_end; }

/// @}

/// \name Property Accessors
/// @{

bool is_leaf() const { return (m_children == NULL); }

Node *parent() { return m_parent; }

const Node *parent() const { return m_parent; }
Expand Down

0 comments on commit 38389e0

Please sign in to comment.