From 41c4eb0cab173b5935fabbf5d30d289fbe358e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Tue, 18 Apr 2017 15:12:19 +0200 Subject: [PATCH] Fixed a comment in Interpolation The OutputIterator type in regular_neighbor_coordinates is a pair of a weighted point (and _not_ a point) and a FT --- .../include/CGAL/regular_neighbor_coordinates_2.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Interpolation/include/CGAL/regular_neighbor_coordinates_2.h b/Interpolation/include/CGAL/regular_neighbor_coordinates_2.h index 1930d8f163d..c9da11400cd 100644 --- a/Interpolation/include/CGAL/regular_neighbor_coordinates_2.h +++ b/Interpolation/include/CGAL/regular_neighbor_coordinates_2.h @@ -262,7 +262,7 @@ regular_neighbor_coordinates_vertex_2(const Rt& rt, // the following functions return an Output_iterator over // std::pair //=> OutputIterator has value type -// std::pair< Rt::Geom_traits::Point_2, Rt::Geom_traits::FT> +// std::pair< Rt::Geom_traits::Weighted_point_2, Rt::Geom_traits::FT> ///////////////////////////////////////////////////////////// //init Face_handle start: template @@ -275,7 +275,7 @@ regular_neighbor_coordinates_2(const Rt& rt, } //OutputIterator has value type -// std::pair< Rt::Geom_traits::Point_2, Rt::Geom_traits::FT> +// std::pair< Rt::Geom_traits::Weighted_point_2, Rt::Geom_traits::FT> //Face_handle start is known: template Triple< OutputIterator, typename Rt::Geom_traits::FT, bool > @@ -288,7 +288,7 @@ regular_neighbor_coordinates_2(const Rt& rt, } //OutputIterator has value type -// std::pair< Rt::Geom_traits::Point_2, Rt::Geom_traits::FT> +// std::pair< Rt::Geom_traits::Weighted_point_2, Rt::Geom_traits::FT> //the Voronoi vertices of the power cell are known: template Triple< OutputIterator, typename Rt::Geom_traits::FT, bool > @@ -313,7 +313,7 @@ regular_neighbor_coordinates_2(const Rt& rt, } //OutputIterator has value type -// std::pair< Rt::Geom_traits::Point_2, Rt::Geom_traits::FT> +// std::pair< Rt::Geom_traits::Weighted_point_2, Rt::Geom_traits::FT> template Triple< OutputIterator, typename Rt::Geom_traits::FT, bool > @@ -331,7 +331,7 @@ regular_neighbor_coordinates_2(const Rt& rt, } //OutputIterator has value type -// std::pair< Rt::Geom_traits::Point_2, Rt::Geom_traits::FT> +// std::pair< Rt::Geom_traits::Weighted_point_2, Rt::Geom_traits::FT> template Triple< OutputIterator, typename Rt::Geom_traits::FT, bool > @@ -363,7 +363,7 @@ regular_neighbor_coordinates_2(const Rt& rt, //compute the coordinates for a vertex of the triangulation // with respect to the other points in the triangulation //OutputIterator has value type -// std::pair< Rt::Geom_traits::Point_2, Rt::Geom_traits::FT> +// std::pair< Rt::Geom_traits::Weighted_point_2, Rt::Geom_traits::FT> template Triple< OutputIterator, typename Rt::Geom_traits::FT, bool > regular_neighbor_coordinates_2(const Rt& rt, @@ -390,7 +390,7 @@ regular_neighbor_coordinates_2(const Rt& rt, //class providing a function object: //OutputIterator has value type -// std::pair< Rt::Geom_traits::Point_2, Rt::Geom_traits::FT> +// std::pair< Rt::Geom_traits::Weighted_point_2, Rt::Geom_traits::FT> template class regular_neighbor_coordinates_2_object {