|
CGAL 4.11.2 - CGAL and Boost Property Maps
|
Namespaces | |
| cpp11 | |
| IO | |
| Scale_space_reconstruction_3 | |
| Shape_detection_3 | |
| Surface_mesh_parameterization | |
Functions | |
| template<class Iter > | |
| Index_property_map< Iter > | make_index_property_map (Iter first, Iter beyond) |
| Free function to create an Index_property_map property map. More... | |
| template<class T > | |
| Pointer_property_map< T >::type | make_property_map (T *pointer) |
| Starting from boost 1.55, the use of raw pointers as property maps has been deprecated. More... | |
| template<class T > | |
| Pointer_property_map< T >::type | make_property_map (std::vector< T > &v) |
equivalent to make_property_map(&v[0]) Note that v must not be modified while using the property map created | |
| template<class T > | |
| Pointer_property_map< T > ::const_type | make_property_map (const T *pointer) |
| Non-mutable version. | |
| template<class T > | |
| Pointer_property_map< T > ::const_type | make_property_map (const std::vector< T > &v) |
equivalent to make_property_map(&v[0]) Note that v must not be modified while using the property map created | |
| Index_property_map<Iter> CGAL::make_index_property_map | ( | Iter | first, |
| Iter | beyond | ||
| ) |
Free function to create an Index_property_map property map.
| Iter | iterator over input elements. |
[first, beyond) range of elements. | first | iterator over the first element (index 0) |
| beyond | past-the-end iterator over the elements |