Return size as Sizef instead of Vector in Rectf
authorIngo Ruhnke <grumbel@gmail.com>
Sat, 16 Aug 2014 19:49:32 +0000 (21:49 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Sat, 16 Aug 2014 19:49:32 +0000 (21:49 +0200)
src/math/rectf.hpp

index a0001f1..80bc478 100644 (file)
@@ -19,6 +19,7 @@
 
 #include <assert.h>
 
+#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)