]> git.lizzy.rs Git - irrlicht.git/blobdiff - include/vector2d.h
Add setRelativeMode for SDL driver (#123)
[irrlicht.git] / include / vector2d.h
index 08672a38e5b388a2955087cab95e03c71dbad965..a0eb7ea821b8615ed4c58b239ade51562afee520 100644 (file)
@@ -8,6 +8,8 @@
 #include "irrMath.h"\r
 #include "dimension2d.h"\r
 \r
+#include <functional>\r
+\r
 namespace irr\r
 {\r
 namespace core\r
@@ -414,5 +416,21 @@ public:
 } // end namespace core\r
 } // end namespace irr\r
 \r
+namespace std\r
+{\r
+\r
+template<class T>\r
+struct hash<irr::core::vector2d<T> >\r
+{\r
+       size_t operator()(const irr::core::vector2d<T>& vec) const\r
+       {\r
+               size_t h1 = hash<T>()(vec.X);\r
+               size_t h2 = hash<T>()(vec.Y);\r
+               return (h1 << (4 * sizeof(h1)) | h1 >> (4 * sizeof(h1))) ^ h2;\r
+       }\r
+};\r
+\r
+}\r
+\r
 #endif\r
 \r