fix typo and missing \tparam

This commit is contained in:
Lingjie Zhu 2018-05-25 10:51:00 +08:00
parent f5696aca49
commit 991efc9034
2 changed files with 6 additions and 3 deletions

View File

@ -25,10 +25,13 @@ public:
/// A model of this concept must provide:
/// @{
/// returns fitting error from face f to proxy.
/// Computes and returns fitting error from face f to proxy.
FT compute_error(const TriangleMesh &tm, const face_descriptor &f, const Proxy &proxy) const;
/// returns fitted proxy from a range of faces.
/// Computes and returns fitted proxy from a range of faces.
/// @tparam FaceRange range of
/// `boost::graph_traits<TriangleMesh>::%face_descriptor`, model of `Range`.
/// Its iterator type is `InputIterator`.
template <typename FaceRange>
Proxy fit_proxy(const TriangleMesh &tm, const FaceRange &faces) const;

View File

@ -192,7 +192,7 @@ The free function can be used for retrieving the segmentation via proxy ids outp
\subsection sma_example3 Class Interface
The class interface `CGAL::Variational_shape_approximation` offers a flexible means to control of the algorithm. The following example uses the `CGAL::L2_metric_planar_proxy` to approximate the shape.
The class interface `CGAL::Variational_shape_approximation` offers a flexible means to control of the algorithm. The following example uses the `CGAL::VSA::L2_metric_plane_proxy` to approximate the shape.
\cgalExample{Surface_mesh_approximation/vsa_class_interface_example.cpp}