aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/math
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/math')
-rw-r--r--src/libjin/math/vector.cpp24
-rw-r--r--src/libjin/math/vector.h24
2 files changed, 0 insertions, 48 deletions
diff --git a/src/libjin/math/vector.cpp b/src/libjin/math/vector.cpp
deleted file mode 100644
index b4e347a..0000000
--- a/src/libjin/math/vector.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include "vector.h"
-
-namespace jin
-{
-namespace math
-{
-
- Vector2::Vector2()
- :x(0), y(0)
- {
- }
-
- Vector2::Vector2(float _x, float _y)
- : x(_x), y(_y)
- {
- };
-
- Vector2::Vector2(const Vector2& v)
- : x(v.x), y(v.y)
- {
- }
-
-} // math
-} // jin \ No newline at end of file
diff --git a/src/libjin/math/vector.h b/src/libjin/math/vector.h
deleted file mode 100644
index 0fbdc87..0000000
--- a/src/libjin/math/vector.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef __JIN_VECTOR_H
-#define __JIN_VECTOR_H
-
-namespace jin
-{
-namespace math
-{
-
- class Vector2
- {
- public:
- Vector2();
- Vector2(float _x, float _y);
- Vector2(const Vector2& v);
-
- float x;
- float y;
-
- };
-
-} // math
-} // jin
-
-#endif \ No newline at end of file