Fix order of parameters, allows->enables, ,->::

This commit is contained in:
Andreas Fabri 2022-01-04 15:29:20 +00:00
parent 7cada272e8
commit ec573afcd9
1 changed files with 3 additions and 3 deletions

View File

@ -191,7 +191,7 @@ namespace CGAL {
\tparam P must be a functor offering \tparam P must be a functor offering
\code \code
FT operator()(Advancing_front_surface_reconstruction,Cell_handle,int) FT operator()(Advancing_front_surface_reconstruction::Cell_handle,int)
\endcode \endcode
returning the priority of the facet `(Cell_handle,int)`. This functor enables the user returning the priority of the facet `(Cell_handle,int)`. This functor enables the user
to choose how candidate triangles are prioritized. If a facet should not appear in the output, to choose how candidate triangles are prioritized. If a facet should not appear in the output,
@ -2581,18 +2581,18 @@ namespace CGAL {
be convertible to `Exact_predicates_inexact_constructions_kernel::Point_3` with the `Cartesian_converter`. be convertible to `Exact_predicates_inexact_constructions_kernel::Point_3` with the `Cartesian_converter`.
\tparam IndicesOutputIterator must be an output iterator to which \tparam IndicesOutputIterator must be an output iterator to which
`std::array<std::size_t, 3>` can be assigned. `std::array<std::size_t, 3>` can be assigned.
\tparam Priority must be a functor with `double operator()(Advancing_front_surface_reconstruction,Cell_handle,int)` returning the \tparam Priority must be a functor with `double operator()(Advancing_front_surface_reconstruction::Cell_handle,int)` returning the
priority of the facet `(Cell_handle,int)`. priority of the facet `(Cell_handle,int)`.
\param b iterator on the first point of the sequence \param b iterator on the first point of the sequence
\param e past the end iterator of the point sequence \param e past the end iterator of the point sequence
\param out output iterator \param out output iterator
\param priority enables the user to choose how candidate triangles are prioritized.
\param radius_ratio_bound candidates incident to surface triangles which are not in the beta-wedge \param radius_ratio_bound candidates incident to surface triangles which are not in the beta-wedge
are discarded, if the ratio of their radius and the radius of the surface triangle is larger than `radius_ratio_bound`. are discarded, if the ratio of their radius and the radius of the surface triangle is larger than `radius_ratio_bound`.
Described in Section \ref AFSR_Boundaries Described in Section \ref AFSR_Boundaries
\param beta half the angle of the wedge in which only the radius of triangles counts for the plausibility of candidates. \param beta half the angle of the wedge in which only the radius of triangles counts for the plausibility of candidates.
Described in Section \ref AFSR_Selection Described in Section \ref AFSR_Selection
\param priority allows the user to choose how candidate triangles are prioritized.
*/ */
template <typename PointInputIterator, typename IndicesOutputIterator, typename Priority> template <typename PointInputIterator, typename IndicesOutputIterator, typename Priority>