mirror of https://github.com/CGAL/cgal
fix tparam in manual
This commit is contained in:
parent
679cb1e1fa
commit
0eeed88a85
|
|
@ -7,5 +7,6 @@ Stream_support
|
|||
Polyhedron
|
||||
Surface_mesh
|
||||
BGL
|
||||
Property_map
|
||||
Principal_component_analysis
|
||||
Polygon_mesh_processing
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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`.
|
||||
|
|
|
|||
Loading…
Reference in New Issue