From 83c40f2c3454a64eb09f62cb9e2d3eb446825e4a Mon Sep 17 00:00:00 2001 From: Jane Tournois Date: Mon, 21 Jun 2021 09:54:48 +0200 Subject: [PATCH] fix return type --- CGAL_ImageIO/include/CGAL/Image_3.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CGAL_ImageIO/include/CGAL/Image_3.h b/CGAL_ImageIO/include/CGAL/Image_3.h index 4197574199e..90242dc48d7 100644 --- a/CGAL_ImageIO/include/CGAL/Image_3.h +++ b/CGAL_ImageIO/include/CGAL/Image_3.h @@ -146,9 +146,9 @@ public: double vy() const { return image_ptr->vy; } double vz() const { return image_ptr->vz; } - double tx() const { return image_ptr->tx; } - double ty() const { return image_ptr->ty; } - double tz() const { return image_ptr->tz; } + float tx() const { return image_ptr->tx; } + float ty() const { return image_ptr->ty; } + float tz() const { return image_ptr->tz; } float value(const std::size_t i, const std::size_t j,