From: Ingo Ruhnke Date: Sat, 16 Aug 2014 19:49:32 +0000 (+0200) Subject: Return size as Sizef instead of Vector in Rectf X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=42b9e6dbe4fbc455729b08a160c17e69e6c0c197;p=supertux.git Return size as Sizef instead of Vector in Rectf --- diff --git a/src/math/rectf.hpp b/src/math/rectf.hpp index a0001f17a..80bc47829 100644 --- a/src/math/rectf.hpp +++ b/src/math/rectf.hpp @@ -19,6 +19,7 @@ #include +#include "math/sizef.hpp" #include "math/vector.hpp" #include "object/anchor_point.hpp" @@ -89,9 +90,9 @@ public: set_width(width); set_height(height); } - Vector get_size() + Sizef get_size() const { - return Vector(get_width(), get_height()); + return Sizef(get_width(), get_height()); } void move(const Vector& v)