blob: 48d9139b9736f62ecc89ecbe1e20fc766857b79d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//
// 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
|