Minor doc fixes

This commit is contained in:
Mael Rouxel-Labbé 2024-02-16 12:28:28 +01:00
parent 8fc0e08356
commit 9841d9755c
3 changed files with 4 additions and 4 deletions

View File

@ -100,9 +100,9 @@ public:
Point_3 point(const Vertex_descriptor& v) const; Point_3 point(const Vertex_descriptor& v) const;
/*! /*!
returns the value of the values field at the vertex `p`. returns the value of the values field at the point `p`.
*/ */
FT value(const Point_3& v) const; FT value(const Point_3& p) const;
/*! /*!
returns the value of the values field at the vertex `v`. returns the value of the values field at the vertex `v`.

View File

@ -30,7 +30,7 @@ namespace Isosurfacing {
* *
* \cgalModels{ValueField_3} * \cgalModels{ValueField_3}
* *
* \brief Class template for a field of values that are calculated using discrete values and trilinear interpolation. * \brief Class template for a field of values that are calculated using discrete values and interpolation.
* *
* \tparam Grid must be `CGAL::Isosurfacing::Cartesian_grid_3<GeomTraits>`, with `GeomTraits` a model of `IsosurfacingTraits_3` * \tparam Grid must be `CGAL::Isosurfacing::Cartesian_grid_3<GeomTraits>`, with `GeomTraits` a model of `IsosurfacingTraits_3`
* \tparam InterpolationScheme must be a model of `InterpolationScheme_3` * \tparam InterpolationScheme must be a model of `InterpolationScheme_3`

View File

@ -28,7 +28,7 @@ namespace Isosurfacing {
* \cgalModels{InterpolationScheme_3} * \cgalModels{InterpolationScheme_3}
* *
* The class `Trilinear_interpolation` is the standard interpolation scheme to extrapolate * The class `Trilinear_interpolation` is the standard interpolation scheme to extrapolate
* data defined only at vertices of a Cartesian grid. * data defined only at vertices of a %Cartesian grid.
* *
* \tparam Grid must be `CGAL::Isosurfacing::Cartesian_grid_3<GeomTraits>`, with `GeomTraits` * \tparam Grid must be `CGAL::Isosurfacing::Cartesian_grid_3<GeomTraits>`, with `GeomTraits`
* a model of `IsosurfacingTraits_3` * a model of `IsosurfacingTraits_3`