default NP for non inlined doc

This commit is contained in:
Sébastien Loriot 2022-02-28 10:03:20 +01:00
parent 8ab3b8ffda
commit 4a170e9ec0
2 changed files with 4 additions and 4 deletions

View File

@ -63,10 +63,10 @@ void convex_hull_3(InputIterator first, InputIterator last, PolygonMesh& pm, con
* \cgalNamedParamsEnd
* \attention The user must include the header file of the `PolygonMesh` and `VertexListGraph` types.
*/
template <class VertexListGraph, class PolygonMesh, class NamedParameters>
template <class VertexListGraph, class PolygonMesh, class NamedParameters = parameters::Default_named_parameters>
void convex_hull_3(const VertexListGraph& g,
PolygonMesh& pm,
const NamedParameters& np);
const NamedParameters& np = parameters::default_values());
/*!
\ingroup PkgConvexHull3Functions

View File

@ -110,10 +110,10 @@ and the remaining vertex is re-positioned.
`visitor` is used to keep track of the simplification process. It has several member functions which
are called at certain points in the simplification code.
*/
template<class TriangleMesh, class StopPolicy, class NamedParameters>
template<class TriangleMesh, class StopPolicy, class NamedParameters = parameters::Default_named_parameters>
int edge_collapse(TriangleMesh& tmesh,
const StopPolicy& should_stop,
const NamedParameters& np);
const NamedParameters& np = parameters::default_values());
} // namespace Surface_mesh_simplification
} /* namespace CGAL */