aboutsummaryrefslogtreecommitdiff
path: root/src/4dvecops/vec4ops.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/4dvecops/vec4ops.h')
-rw-r--r--src/4dvecops/vec4ops.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/4dvecops/vec4ops.h b/src/4dvecops/vec4ops.h
deleted file mode 100644
index 48d9139..0000000
--- a/src/4dvecops/vec4ops.h
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-// Created by Michael Foiani on 12/8/23.
-//
-
-#ifndef PROJECTS_RAY_VEC4OPS_H
-#define PROJECTS_RAY_VEC4OPS_H
-
-#include <glm/glm.hpp>
-
-class Vec4Ops {
-public:
-
- static glm::mat4 getRotationMatrix4XY(float angleRadians);
-
- static glm::mat4 getRotationMatrix4YZ(float angleRadians);
-
- static glm::mat4 getRotationMatrix4ZX(float angleRadians);
-
- static glm::mat4 getRotationMatrix4XW(float angleRadians);
-
- static glm::mat4 getRotationMatrix4YW(float angleRadians);
-
- static glm::mat4 getRotationMatrix4ZW(float angleRadians);
-};
-
-#endif //PROJECTS_RAY_VEC4OPS_H