This commit is contained in:
Andreas Fabri 2012-09-21 13:50:51 +00:00
parent 67a9587167
commit bfb3de785a
3 changed files with 3 additions and 9 deletions

View File

@ -9,10 +9,6 @@ over `T` elements) to the `T` object.
\models `boost::LvaluePropertyMap`
### Example ###
See \ref property_map.cpp example.
*/
template< typename T >
class Dereference_property_map :

View File

@ -13,7 +13,5 @@
\PkgManuals{Chapter_CGAL_and_Boost_Property_Maps,PkgProperty_map}
\PkgDescriptionEnd
This package provides a framework for interfacing \cgal data
structures with algorithms expecting Boost Property Maps.
*/

View File

@ -1,7 +1,7 @@
namespace CGAL {
/*!
\mainpage CGAL and Boost Property Maps
\mainpage %CGAL and Boost Property Maps
\anchor Chapter_CGAL_and_Boost_Property_Maps
\anchor chapterProperty_map
@ -21,7 +21,7 @@ the fly. This is an "implementation detail" of the particular property map.<BR>
Property maps in the Boost manuals: <A HREF="http://www.boost.org/libs/property_map/doc/property_map.html"><TT>http://www.boost.org/libs/property_map/doc/property_map.html</TT></A>
# CGAL and Boost Property Maps #
# %CGAL and Boost Property Maps #
Some algorithms in \cgal take as input parameters iterator ranges and property maps to access information attached to elements of the sequence.
@ -36,7 +36,7 @@ This component provides property maps to support these cases:
`CGAL::Nth_of_tuple_property_map<N, Tuple>`
## Example with Dereference_property_map ##
## Example with %Dereference_property_map ##
The following example reads a point set and removes 5% of the points. It uses `CGAL::Dereference_property_map<Point_3>` as position property map.
\cgalexample{remove_outliers_example.cpp}