aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/Math/vector2d.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/YAGE/Math/vector2d.hpp')
-rw-r--r--include/YAGE/Math/vector2d.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/YAGE/Math/vector2d.hpp b/include/YAGE/Math/vector2d.hpp
deleted file mode 100644
index 1a6d2856..00000000
--- a/include/YAGE/Math/vector2d.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef YAGE_MATH_VECTOR2D_HPP
-#define YAGE_MATH_VECTOR2D_HPP
-
-#include "vector.hpp"
-
-namespace yage
-{
-
-class Vector2D : public Vector
-{
-public:
- Vector2D(long double x=0.L, long double y=0.L);
-
- long double getX() const;
- long double getY() const;
-};
-
-} // yage
-
-#endif