From 0a2da4f82435a49212e276d9d603e84ac298246d Mon Sep 17 00:00:00 2001 From: Mateja Date: Sun, 27 Dec 2020 00:09:34 +0100 Subject: Reorganize entire project. --- src/Vector4f.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/Vector4f.h (limited to 'src/Vector4f.h') diff --git a/src/Vector4f.h b/src/Vector4f.h new file mode 100644 index 0000000..ee1846a --- /dev/null +++ b/src/Vector4f.h @@ -0,0 +1,12 @@ +#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); +}; + -- cgit v1.2.3