]> git.localhorst.tv Git - l2e.git/blobdiff - src/sdl/utility.h
renamed namespace geometry -> math
[l2e.git] / src / sdl / utility.h
index 40867dde58663d3d58ff6d5d466847888b5af94a..295877ff9cc314be4df10ff6df8313acdc153d43 100644 (file)
@@ -1,15 +1,15 @@
 #ifndef SDL_UTILITY_H_
 #define SDL_UTILITY_H_
 
-#include "../geometry/Vector.h"
+#include "../math/Vector.h"
 #include <SDL.h>
 
 namespace sdl {
 
-void HorizontalLine(SDL_Surface *dst, const geometry::Vector<int> &position, unsigned int length, Uint32 color);
-void VerticalLine(SDL_Surface *dst, const geometry::Vector<int> &position, unsigned int length, Uint32 color);
+void HorizontalLine(SDL_Surface *dst, const math::Vector<int> &position, unsigned int length, Uint32 color);
+void VerticalLine(SDL_Surface *dst, const math::Vector<int> &position, unsigned int length, Uint32 color);
 
-void OutlineRect(SDL_Surface *dst, const geometry::Vector<int> &from, const geometry::Vector<int> &to, Uint32 color);
+void OutlineRect(SDL_Surface *dst, const math::Vector<int> &from, const math::Vector<int> &to, Uint32 color);
 void OutlineRect(SDL_Surface *dst, SDL_Rect *dstrect, Uint32 color);
 
 }