Corrections on doc

This commit is contained in:
Simon Giraudot 2016-09-16 15:12:13 +02:00
parent 937d4bfae9
commit 6b9055d3cb
4 changed files with 23 additions and 26 deletions

View File

@ -1,4 +1,4 @@
@INCLUDE = ${CGAL_DOC_PACKAGE_DEFAULTS}
PROJECT_NAME = "CGAL ${CGAL_DOC_VERSION} - Put title of project here"
PROJECT_NAME = "CGAL ${CGAL_DOC_VERSION} - 3D Point Set"
INPUT = ${CMAKE_SOURCE_DIR}/Point_set_3/doc/Point_set_3/ \
${CMAKE_SOURCE_DIR}/Point_set_3/include

View File

@ -29,10 +29,7 @@
## Classes ##
- `CGAL::Point_set_3<Gt>`
## Functions ##
- `CGAL::read_ply_point_set_3<Gt>`
- `CGAL::Ply_interpreter_point_set_3<Gt>`
*/

View File

@ -73,9 +73,6 @@ through iterators and property maps. The `CGAL::Point_set_3<Gt>`
structure directly provides these iterators and property maps so that
applying \cgal algorithms to it is straightforward.
\cgalExample{Point_set_3/point_set_algo.cpp}
\subsection Point_set_3_PSP Point Set Processing
When adding a new property to the point set, the associated property
@ -94,6 +91,9 @@ The following example shows how to apply some algorithms from the
- detecting the sphere shape with `CGAL::Shape_detection_3::Efficient_RANSAC`
\cgalExample{Point_set_3/point_set_algo.cpp}
\subsection Point_set_3_IO Input/Output
Using functions of \cgal to read files requires a slightly different

View File

@ -537,24 +537,6 @@ public:
return m_base.template get<T>(name);
}
/*!
\brief Gets the push property map of the given property.
\tparam T type of the property.
\param prop The property map.
\return Returns a pair containing: the wanted property map and a
boolean set to `true` or an empty property map and a boolean set
to `false` (if the property was not found).
*/
template <class T>
Push_pmap<Properties::Property_map<Item, T> >
push_pmap (Properties::Property_map<Item, T>& prop)
{
return Push_pmap<Properties::Property_map<Item, T> > (this, &prop, size());
}
/*!
\brief Removes the wanted property.
@ -614,6 +596,24 @@ public:
/// \name Property Maps and Inserters
/// @{
/*!
\brief Gets the push property map of the given property.
\tparam T type of the property.
\param prop The property map.
\return Returns a pair containing: the wanted property map and a
boolean set to `true` or an empty property map and a boolean set
to `false` (if the property was not found).
*/
template <class T>
Push_pmap<Properties::Property_map<Item, T> >
push_pmap (Properties::Property_map<Item, T>& prop)
{
return Push_pmap<Properties::Property_map<Item, T> > (this, &prop, size());
}
/*!
\brief Get the property map of the point attribute.
*/