diff options
Diffstat (limited to 'source/Vector4f.h')
-rw-r--r-- | source/Vector4f.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/source/Vector4f.h b/source/Vector4f.h deleted file mode 100644 index ee1846a..0000000 --- a/source/Vector4f.h +++ /dev/null @@ -1,12 +0,0 @@ -#include"Matrix4f.h"
-class Vector4f
-{
-public:
- float x, y, z, w;
- Vector4f();
- Vector4f(float x_, float y_, float z_, float w_);
- float dotProduct(const Vector4f& a);
- Vector4f crossProduct(const Vector4f& a);
- Vector4f multiplyMatrix(const Matrix4f& a);
-};
-
|