mirror of https://github.com/CGAL/cgal
skip property_map.h to avoid duplicate with package boost::property_map
basic documentation of members
This commit is contained in:
parent
585c3f9c62
commit
9a7f4a5876
|
|
@ -135,7 +135,7 @@ jet_estimate_normals(
|
|||
NormalPMap normal_pmap, ///< property map InputIterator -> Vector_3.
|
||||
unsigned int k, ///< number of neighbors.
|
||||
const Kernel& /*kernel*/, ///< geometric traits.
|
||||
unsigned int degree_fitting = 2)
|
||||
unsigned int degree_fitting = 2) ///< fitting degree
|
||||
{
|
||||
CGAL_TRACE("Calls jet_estimate_normals()\n");
|
||||
|
||||
|
|
|
|||
|
|
@ -132,8 +132,8 @@ jet_smooth_point_set(
|
|||
PointPMap point_pmap, ///< property map InputIterator -> Point_3.
|
||||
unsigned int k, ///< number of neighbors.
|
||||
const Kernel& /*kernel*/, ///< geometric traits.
|
||||
unsigned int degree_fitting = 2,
|
||||
unsigned int degree_monge = 2)
|
||||
unsigned int degree_fitting = 2, ///< fitting degree
|
||||
unsigned int degree_monge = 2) ///< Monge degree
|
||||
{
|
||||
// basic geometric types
|
||||
typedef typename Kernel::Point_3 Point;
|
||||
|
|
|
|||
|
|
@ -17,6 +17,9 @@
|
|||
//
|
||||
// Author(s) : Andreas Fabri and Laurent Saboret
|
||||
|
||||
//WARNING: The documentation is not generated using this file
|
||||
/// \cond SKIP_IN_MANUAL
|
||||
|
||||
#ifndef CGAL_POINT_SET_PROPERTY_MAP_H
|
||||
#define CGAL_POINT_SET_PROPERTY_MAP_H
|
||||
|
||||
|
|
@ -194,4 +197,6 @@ make_nth_of_tuple_property_map(Iter)
|
|||
|
||||
} // namespace CGAL
|
||||
|
||||
/// \endcond
|
||||
|
||||
#endif // CGAL_POINT_SET_PROPERTY_MAP_H
|
||||
|
|
|
|||
Loading…
Reference in New Issue