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 Polyhedron
Surface_mesh Surface_mesh
BGL BGL
Property_map
Principal_component_analysis Principal_component_analysis
Polygon_mesh_processing Polygon_mesh_processing

View File

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

View File

@ -46,7 +46,7 @@ unspecified_type all_default();
/*! /*!
* \ingroup PkgTSMA * \ingroup PkgTSMA
* @brief Approximates the input mesh by fitting it with proxies. * @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. * to approximate a triangle surface mesh, with indexed triangles as output.
* *
* @tparam TriangleMesh model of `FaceListGraph`. * @tparam TriangleMesh model of `FaceListGraph`.