From 0eeed88a8502d020045ff16db2d8cb406481249d Mon Sep 17 00:00:00 2001 From: Lingjie Zhu Date: Thu, 14 Jun 2018 10:36:27 +0800 Subject: [PATCH] fix tparam in manual --- .../doc/Surface_mesh_approximation/dependencies | 1 + .../include/CGAL/Variational_shape_approximation.h | 10 +++++----- .../include/CGAL/approximate_mesh.h | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Surface_mesh_approximation/doc/Surface_mesh_approximation/dependencies b/Surface_mesh_approximation/doc/Surface_mesh_approximation/dependencies index 8fb43dc5d68..75ef98ef5ef 100644 --- a/Surface_mesh_approximation/doc/Surface_mesh_approximation/dependencies +++ b/Surface_mesh_approximation/doc/Surface_mesh_approximation/dependencies @@ -7,5 +7,6 @@ Stream_support Polyhedron Surface_mesh BGL +Property_map Principal_component_analysis Polygon_mesh_processing diff --git a/Surface_mesh_approximation/include/CGAL/Variational_shape_approximation.h b/Surface_mesh_approximation/include/CGAL/Variational_shape_approximation.h index 7dca296cc28..748755f2616 100644 --- a/Surface_mesh_approximation/include/CGAL/Variational_shape_approximation.h +++ b/Surface_mesh_approximation/include/CGAL/Variational_shape_approximation.h @@ -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::%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