fix tparam in manual

This commit is contained in:
Lingjie Zhu 2018-06-14 10:36:27 +08:00
parent 679cb1e1fa
commit 0eeed88a85
3 changed files with 7 additions and 6 deletions

View File

@ -7,5 +7,6 @@ Stream_support
Polyhedron
Surface_mesh
BGL
Property_map
Principal_component_analysis
Polygon_mesh_processing

View File

@ -58,12 +58,12 @@ enum Approximation_seeding_tag {
};
/// \ingroup PkgTSMA
/// @brief Main class for Variational Shape Approximation algorithm.
/// @tparam TriangleMesh CGAL TriangleMesh
/// @tparam VertexPointMap vertex point map
/// @tparam ErrorMetricProxy approximation metric type
/// @brief Main class for Variational Shape Approximation algorithm described in \cgalCite{cgal:cad-vsa-04}.
/// @tparam TriangleMesh a model of `FaceListGraph`
/// @tparam VertexPointMap a `ReadablePropertyMap` with `boost::graph_traits<TriangleMesh>::%vertex_descriptor` as key and `GeomTraits::Point_3` as value type
/// @tparam ErrorMetricProxy a model of `ErrorMetricProxy`
/// @tparam GeomTraits model of \cgal Kernel
/// @tparam Concurrency_tag concurrency tag
/// @tparam Concurrency_tag concurrency tag.
template <typename TriangleMesh,
typename VertexPointMap,
typename ErrorMetricProxy = CGAL::Default,

View File

@ -46,7 +46,7 @@ unspecified_type all_default();
/*!
* \ingroup PkgTSMA
* @brief Approximates the input mesh by fitting it with proxies.
* This function uses the Variational Shape Approximation algorithm
* This function uses the Variational Shape Approximation algorithm described in \cgalCite{cgal:cad-vsa-04}
* to approximate a triangle surface mesh, with indexed triangles as output.
*
* @tparam TriangleMesh model of `FaceListGraph`.