From 92830506aa21ffc6f4c2b31fd5c93a607d72c873 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 30 Nov 2015 15:48:34 +0100 Subject: [PATCH 1/2] fix a type --- .../doc/Polygon_mesh_processing/NamedParameters.txt | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt b/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt index b97a2981eb5..b6361f271b8 100644 --- a/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt +++ b/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt @@ -116,7 +116,10 @@ typename CGAL::Kernel_traits< the property map containing the index of each face of the input polygon mesh.\n \b Type: a class model of `ReadablePropertyMap` with `boost::graph_traits::%face_descriptor` as key type and -` boost::face_index_t` as value type.\n +the value type +\code typename boost::property_traits< + typename boost::property_map::type>::value_type +\endcode \b Default value is \code boost::get(CGAL::face_index, pmesh)\endcode \cgalNPEnd @@ -124,7 +127,10 @@ typename CGAL::Kernel_traits< the property map containing the index of each vertex of the input polygon mesh.\n \b Type: a class model of `ReadablePropertyMap` with `boost::graph_traits::%vertex_descriptor` as key type and -`CGAL::vertex_index_t` as value type.\n +the value type +\code typename boost::property_traits< + typename boost::property_map::type>::value_type +\endcode \b Default value is \code boost::get(CGAL::vertex_index, pmesh)\endcode \cgalNPEnd @@ -139,7 +145,7 @@ algorithm.\n the property map containing information about edges of the input polygon mesh being constrained or not.\n \b Type : a class model of `ReadablePropertyMap` with `boost::graph_traits::%edge_descriptor` as key type and -`bool` as value type.It should be default - constructible.\n +`bool` as value type.It should be default constructible.\n \b Default : if this parameter is omitted, a default property map where no edge is constrained is provided. \cgalNPEnd From 7ba2cf20e2c98c0036b0b97bce5410df654a4bbd Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Mon, 30 Nov 2015 19:54:29 +0100 Subject: [PATCH 2/2] more typos fixed --- .../doc/Polygon_mesh_processing/NamedParameters.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt b/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt index b6361f271b8..c988076f377 100644 --- a/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt +++ b/Polygon_mesh_processing/doc/Polygon_mesh_processing/NamedParameters.txt @@ -73,7 +73,7 @@ Here is the list of the named parameters available in this package: \cgalNPBegin{use_delaunay_triangulation} \anchor PMP_use_delaunay_triangulation enables the use of the Delaunay triangulation facet search space for hole filling functions.\n -\b Type: boolean \n +\b Type: `bool` \n \b Default value is `true` \cgalNPEnd @@ -145,7 +145,7 @@ algorithm.\n the property map containing information about edges of the input polygon mesh being constrained or not.\n \b Type : a class model of `ReadablePropertyMap` with `boost::graph_traits::%edge_descriptor` as key type and -`bool` as value type.It should be default constructible.\n +`bool` as value type. It should be default constructible.\n \b Default : if this parameter is omitted, a default property map where no edge is constrained is provided. \cgalNPEnd @@ -154,7 +154,7 @@ a default property map where no edge is constrained is provided. enables the protection of constraints listed by \ref PMP_edge_is_constrained_map "edge_is_constrained_map" during isotropic remeshing. If `true`, constraint edges cannot be modified at all during the remeshing process.\n -\b Type : boolean \n +\b Type : `bool` \n \b Default value is `false` \cgalNPEnd