diff --git a/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt b/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt index b3d40e5b466..4f6704cfea3 100644 --- a/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt +++ b/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt @@ -14,7 +14,7 @@ That is, you give each parameter a name by wrapping it into a function whose nam When you use named parameters, the ordering is irrelevant, so `f(name(n).age(a).gender(g))` is equivalent to `f(age(a).gender(g).name(n))`, and you can just omit any named parameter that has a default value. -The sequence of named parameters should start with `CGAL::parameters::`. +The sequence of named parameters should start with `CGAL::Polygon_mesh_processing::parameters::`. \cgalHeading{Example} @@ -33,7 +33,8 @@ refine(pmesh , faces , faces_out , vertices_out - , CGAL::parameters::vertex_point_map(vpmap).density_control_factor(d)); + , CGAL::Polygon_mesh_processing::parameters::vertex_point_map(vpmap) + .density_control_factor(d)); \endcode @@ -46,8 +47,8 @@ In this package, all functions optional parameters are implemented as BGL option Since the parameters of the various polygon mesh processing functions defined in this package are redundant, their long descriptions are centralized below. - -\b Template \b Parameters +