fix return type

This commit is contained in:
Jane Tournois 2021-06-21 09:54:48 +02:00
parent c07c71275d
commit 83c40f2c34
1 changed files with 3 additions and 3 deletions

View File

@ -146,9 +146,9 @@ public:
double vy() const { return image_ptr->vy; } double vy() const { return image_ptr->vy; }
double vz() const { return image_ptr->vz; } double vz() const { return image_ptr->vz; }
double tx() const { return image_ptr->tx; } float tx() const { return image_ptr->tx; }
double ty() const { return image_ptr->ty; } float ty() const { return image_ptr->ty; }
double tz() const { return image_ptr->tz; } float tz() const { return image_ptr->tz; }
float value(const std::size_t i, float value(const std::size_t i,
const std::size_t j, const std::size_t j,