From 9841d9755cdd9b82d946619f96b0ce0183a5f467 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Fri, 16 Feb 2024 12:28:28 +0100 Subject: [PATCH] Minor doc fixes --- .../doc/Isosurfacing_3/Concepts/IsosurfacingDomain_3.h | 4 ++-- .../CGAL/Isosurfacing_3/Interpolated_discrete_values_3.h | 2 +- .../include/CGAL/Isosurfacing_3/interpolation_schemes_3.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Isosurfacing_3/doc/Isosurfacing_3/Concepts/IsosurfacingDomain_3.h b/Isosurfacing_3/doc/Isosurfacing_3/Concepts/IsosurfacingDomain_3.h index 56a053fa6f5..daa315e1845 100644 --- a/Isosurfacing_3/doc/Isosurfacing_3/Concepts/IsosurfacingDomain_3.h +++ b/Isosurfacing_3/doc/Isosurfacing_3/Concepts/IsosurfacingDomain_3.h @@ -100,9 +100,9 @@ public: 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`. diff --git a/Isosurfacing_3/include/CGAL/Isosurfacing_3/Interpolated_discrete_values_3.h b/Isosurfacing_3/include/CGAL/Isosurfacing_3/Interpolated_discrete_values_3.h index 1db6f9b53eb..d5b9a8c8d81 100644 --- a/Isosurfacing_3/include/CGAL/Isosurfacing_3/Interpolated_discrete_values_3.h +++ b/Isosurfacing_3/include/CGAL/Isosurfacing_3/Interpolated_discrete_values_3.h @@ -30,7 +30,7 @@ namespace Isosurfacing { * * \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`, with `GeomTraits` a model of `IsosurfacingTraits_3` * \tparam InterpolationScheme must be a model of `InterpolationScheme_3` diff --git a/Isosurfacing_3/include/CGAL/Isosurfacing_3/interpolation_schemes_3.h b/Isosurfacing_3/include/CGAL/Isosurfacing_3/interpolation_schemes_3.h index 89849b8538a..ea36e458d30 100644 --- a/Isosurfacing_3/include/CGAL/Isosurfacing_3/interpolation_schemes_3.h +++ b/Isosurfacing_3/include/CGAL/Isosurfacing_3/interpolation_schemes_3.h @@ -28,7 +28,7 @@ namespace Isosurfacing { * \cgalModels{InterpolationScheme_3} * * 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`, with `GeomTraits` * a model of `IsosurfacingTraits_3`