Skip to content

Commit

Permalink
Add placeholder text to manual
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Jun 30, 2020
1 parent 43c07f3 commit 8390eb9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 25 deletions.
2 changes: 0 additions & 2 deletions Octree/doc/Octree/PackageDescription.txt
Expand Up @@ -22,9 +22,7 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor i
\cgalPkgShortInfoBegin
This is all placeholder information
\cgalPkgSince{0.9}
\cgalPkgDependsOn{\ref PkgTDS2}
\cgalPkgBib{cgal:y-t2}
\cgalPkgLicense{\ref licensesGPL "GPL"}
\cgalPkgDemo{Delaunay Triangulation,delaunay_triangulation_2.zip,Regular Triangulation,regular_triangulation_2.zip,Constrained Delaunay Triangulation,constrained_delaunay_triangulation_2.zip}
\cgalPkgShortInfoEnd

Expand Down
23 changes: 0 additions & 23 deletions Octree/include/CGAL/Octree.h
Expand Up @@ -53,22 +53,11 @@ namespace CGAL {

namespace Octree {

/**
* @ingroup PkgOctreeRef
*
* @brief Octree data structure
*
* @tparam PointRange
* @tparam PointMap
*/
template<class PointRange,
class PointMap>
class Octree {
public: // types

/// \name Types
/// @{

// Deduce the kernel
typedef typename boost::property_traits<PointMap>::value_type Point;
typedef typename CGAL::Kernel_traits<Point>::Kernel Kernel;
Expand All @@ -83,13 +72,8 @@ namespace CGAL {
typedef typename PointRange::iterator Range_iterator;
typedef typename std::iterator_traits<Range_iterator>::value_type Range_type;

/// @}

public: // Classes

/// \name Classes
/// @{

class const_iterator :
public boost::iterator_facade<const_iterator, Node const, boost::forward_traversal_tag> {

Expand Down Expand Up @@ -123,8 +107,6 @@ namespace CGAL {

};

/// @}

private: // data members :

Node m_root; /* root node of the octree */
Expand All @@ -141,17 +123,13 @@ namespace CGAL {

public: // functions :

/// \name Creation
/// @{

Octree(
PointRange &pwn,
PointMap &point_map,
const FT enlarge_ratio = 1.2) :
m_ranges(pwn),
m_points_map(point_map) {

/// @}

// compute bounding box that encloses all points
Iso_cuboid bbox = CGAL::bounding_box(boost::make_transform_iterator
Expand Down Expand Up @@ -309,7 +287,6 @@ namespace CGAL {

}; // end class Octree


} // namespace Octree

} // namespace CGAL
Expand Down

0 comments on commit 8390eb9

Please sign in to comment.