mirror of https://github.com/CGAL/cgal
default NP for non inlined doc
This commit is contained in:
parent
8ab3b8ffda
commit
4a170e9ec0
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue