forgot to remove another default

This commit is contained in:
Sébastien Loriot 2022-01-10 13:33:37 +01:00
parent 382cbfaf25
commit 3d1f7e530e
1 changed files with 5 additions and 6 deletions

View File

@ -185,7 +185,7 @@ public:
\cgalParamDescription{a property map associating the index of a point in the input range \cgalParamDescription{a property map associating the index of a point in the input range
to the index of plane (`-1` if the point is not assigned to a plane)} to the index of plane (`-1` if the point is not assigned to a plane)}
\cgalParamType{a class model of `ReadablePropertyMap` with `std::size_t` as key type and `int` as value type} \cgalParamType{a class model of `ReadablePropertyMap` with `std::size_t` as key type and `int` as value type}
\cgalParamDefault{There is no default, this parameters is mandatory} \cgalParamDefault{There is no default, this parameters is mandatory.}
\cgalParamNEnd \cgalParamNEnd
\cgalParamNBegin{plane_map} \cgalParamNBegin{plane_map}
@ -1504,7 +1504,7 @@ private:
\param planes input plane range. \param planes input plane range.
\param output output iterator where output points are written \param output output iterator where output points are written
\param epsilon size parameter. \param epsilon size parameter.
\param np an optional sequence of \ref bgl_namedparameters "Named Parameters" among the ones listed below \param np a sequence of \ref bgl_namedparameters "Named Parameters" among the ones listed below
\cgalNamedParamsBegin \cgalNamedParamsBegin
\cgalParamNBegin{point_map} \cgalParamNBegin{point_map}
@ -1524,8 +1524,7 @@ private:
\cgalParamDescription{a property map associating the index of a point in the input range \cgalParamDescription{a property map associating the index of a point in the input range
to the index of plane (`-1` if the point is not assigned to a plane)} to the index of plane (`-1` if the point is not assigned to a plane)}
\cgalParamType{a class model of `ReadablePropertyMap` with `std::size_t` as key type and `int` as value type} \cgalParamType{a class model of `ReadablePropertyMap` with `std::size_t` as key type and `int` as value type}
\cgalParamDefault{unused} \cgalParamDefault{There is no default, this parameters is mandatory.}
\cgalParamNEnd
\cgalParamNBegin{plane_map} \cgalParamNBegin{plane_map}
\cgalParamDescription{a property map containing the planes associated to the elements of the plane range `planes`} \cgalParamDescription{a property map containing the planes associated to the elements of the plane range `planes`}
@ -1551,14 +1550,14 @@ private:
template <typename PointRange, template <typename PointRange,
typename PlaneRange, typename PlaneRange,
typename OutputIterator, typename OutputIterator,
typename NamedParameters = parameters::Default_named_parameters typename NamedParameters
> >
OutputIterator OutputIterator
structure_point_set (const PointRange& points, structure_point_set (const PointRange& points,
const PlaneRange& planes, const PlaneRange& planes,
OutputIterator output, OutputIterator output,
double epsilon, double epsilon,
const NamedParameters& np = parameters::use_default_values()) const NamedParameters& np)
{ {
using parameters::choose_parameter; using parameters::choose_parameter;
using parameters::get_parameter; using parameters::get_parameter;