mirror of https://github.com/CGAL/cgal
doc fixes
This commit is contained in:
parent
0c39f355a5
commit
be7d9d1728
|
|
@ -308,7 +308,7 @@ CGAL_DEF_GET_INITIALIZED_INDEX_MAP(face, typename boost::graph_traits<Graph>::fa
|
|||
}
|
||||
|
||||
template<typename PointRange,
|
||||
typename NamedParameters = CGAL::Named_function_parameters<bool, internal_np::all_default_t>,
|
||||
typename NamedParameters = Named_function_parameters<bool, internal_np::all_default_t>,
|
||||
bool has_nested_iterator = internal::Has_nested_type_iterator<PointRange>::value>
|
||||
class GetPointMap
|
||||
{
|
||||
|
|
|
|||
|
|
@ -193,6 +193,11 @@ as shown in the following example.
|
|||
|
||||
\cgalExample{Polygon_mesh_processing/triangulate_faces_example.cpp}
|
||||
|
||||
An additional parameter, named `triangulate_visitor` can be used to track the how faces
|
||||
are triangulated into subfaces. The following examples shows how to use it.
|
||||
|
||||
\cgalExample{Polygon_mesh_processing/triangulate_faces_split_visitor_example.cpp}
|
||||
|
||||
|
||||
\subsubsection RemeshingExample_1 Isotropic Remeshing of a Region on a Polygon Mesh
|
||||
|
||||
|
|
|
|||
|
|
@ -29,4 +29,5 @@
|
|||
\example Polygon_mesh_processing/shape_smoothing_example.cpp
|
||||
\example Polygon_mesh_processing/locate_example.cpp
|
||||
\example Polygon_mesh_processing/orientation_pipeline_example.cpp
|
||||
\example Polygon_mesh_processing/triangulate_faces_split_visitor_example.cpp
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -450,11 +450,11 @@ public:
|
|||
* \cgalParamNEnd
|
||||
*
|
||||
* \cgalParamNBegin{triangulate_visitor}
|
||||
* \cgalParamDescription{a visitor that allows to track how faces are triangulated into subfaces}
|
||||
* \cgalParamDescription{a visitor that enables to track how faces are triangulated into subfaces}
|
||||
* \cgalParamType{a class model of `PMPTriangulateFaceVisitor`}
|
||||
* \cgalParamDefault{`Triangulate_faces::Default_visitor<TriangleMesh>`}
|
||||
* \cgalParamDefault{`Triangulate_faces::Default_visitor<PolygonMesh>`}
|
||||
* \cgalParamExtra{Note that the visitor will be copied, so
|
||||
* it should not have any data member that does have a reference-like type.}
|
||||
* it must not have any data member that does not have a reference-like type.}
|
||||
* \cgalParamNEnd
|
||||
* \cgalNamedParamsEnd
|
||||
*
|
||||
|
|
@ -532,11 +532,11 @@ bool triangulate_face(typename boost::graph_traits<PolygonMesh>::face_descriptor
|
|||
* \cgalParamNEnd
|
||||
*
|
||||
* \cgalParamNBegin{triangulate_visitor}
|
||||
* \cgalParamDescription{a visitor that allows to track how faces are triangulated into subfaces}
|
||||
* \cgalParamDescription{a visitor that enables to track how faces are triangulated into subfaces}
|
||||
* \cgalParamType{a class model of `PMPTriangulateFaceVisitor`}
|
||||
* \cgalParamDefault{`Triangulate_faces::Default_visitor<TriangleMesh>`}
|
||||
* \cgalParamDefault{`Triangulate_faces::Default_visitor<PolygonMesh>`}
|
||||
* \cgalParamExtra{Note that the visitor will be copied, so
|
||||
* it should not have any data member that does have a reference-like type.}
|
||||
* it must not have any data member that does not have a reference-like type.}
|
||||
* `\cgalParamNEnd
|
||||
* \cgalNamedParamsEnd
|
||||
*
|
||||
|
|
@ -610,11 +610,11 @@ bool triangulate_faces(FaceRange face_range, PolygonMesh& pmesh)
|
|||
* \cgalParamNEnd
|
||||
*
|
||||
* \cgalParamNBegin{triangulate_visitor}
|
||||
* \cgalParamDescription{a visitor that allows to track how faces are triangulated into subfaces}
|
||||
* \cgalParamDescription{a visitor that enables to track how faces are triangulated into subfaces}
|
||||
* \cgalParamType{a class model of `PMPTriangulateFaceVisitor`}
|
||||
* \cgalParamDefault{`Triangulate_faces::Default_visitor<TriangleMesh>`}
|
||||
* \cgalParamDefault{`Triangulate_faces::Default_visitor<PolygonMesh>`}
|
||||
* \cgalParamExtra{Note that the visitor will be copied, so
|
||||
* it should not have any data member that does have a reference-like type.}
|
||||
* it must not have any data member that does not have a reference-like type.}
|
||||
* \cgalParamNEnd
|
||||
* \cgalNamedParamsEnd
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue