mirror of https://github.com/CGAL/cgal
fix return type
This commit is contained in:
parent
c07c71275d
commit
83c40f2c34
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue