aboutsummaryrefslogtreecommitdiff
path: root/source/Vector4f.h
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2020-12-27 00:09:34 +0100
committerMateja <mail@matejamaric.com>2020-12-27 00:09:34 +0100
commit0a2da4f82435a49212e276d9d603e84ac298246d (patch)
tree1fea3b94712df18d1229f4f3492b540c90f6f302 /source/Vector4f.h
parenta84debff887c3e3d930665db140b7a287d3879d4 (diff)
downloaderender-0a2da4f82435a49212e276d9d603e84ac298246d.tar.gz
erender-0a2da4f82435a49212e276d9d603e84ac298246d.zip
Reorganize entire project.
Diffstat (limited to 'source/Vector4f.h')
-rw-r--r--source/Vector4f.h12
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);
-};
-