BLT/include/blt/math/matrix.h

1010 lines
34 KiB
C
Raw Normal View History

/*
* Created by Brett on 28/02/23.
* Licensed under GNU General Public License V3.0
* See LICENSE file for license detail
*/
#ifndef BLT_TESTS_MATRIX_H
#define BLT_TESTS_MATRIX_H
#include <blt/math/vectors.h>
2024-05-01 03:27:17 -04:00
#include <cstring>
#include <type_traits>
2024-09-19 15:12:38 -04:00
#include <array>
#include <initializer_list>
2023-04-07 00:02:21 -04:00
#ifndef M_PI
// MSVC does not have M_PI
# define M_PI 3.14159265358979323846
#endif
2024-05-01 03:27:17 -04:00
namespace blt
{
2024-09-19 02:01:18 -04:00
template<typename T, blt::u32 rows, blt::u32 columns>
class generalized_matrix
{
using matrix_t = generalized_matrix<T, rows, columns>;
enum class init_type
{
EMPTY,
IDENTITY
};
2024-09-19 17:39:06 -04:00
constexpr explicit generalized_matrix(init_type type)
{
switch (type)
{
case init_type::EMPTY:
break;
case init_type::IDENTITY:
set_identity();
break;
}
}
2024-09-19 02:01:18 -04:00
public:
2024-09-19 17:39:06 -04:00
constexpr generalized_matrix() = default;
2024-09-19 17:39:06 -04:00
constexpr generalized_matrix(const matrix_t& copy)
{
std::memcpy(data, copy.data, sizeof(matrix_t));
}
2024-09-19 17:39:06 -04:00
constexpr generalized_matrix(matrix_t&& move) noexcept
{
std::memcpy(data, move.data, sizeof(matrix_t));
}
2024-09-19 17:39:06 -04:00
constexpr matrix_t& operator=(const matrix_t& copy)
{
if (&copy == this)
return *this;
std::memcpy(data, copy.data, sizeof(matrix_t));
return *this;
}
2024-09-19 17:39:06 -04:00
constexpr generalized_matrix(std::initializer_list<T> list)
2024-09-19 15:12:38 -04:00
{
blt::size_t index = 0;
for (const auto& v : list)
{
data[(index / rows)][(index % rows)] = v;
index++;
}
}
2024-09-19 17:39:06 -04:00
constexpr generalized_matrix(std::initializer_list<blt::vec<float, rows>> list)
2024-09-19 15:12:38 -04:00
{
blt::size_t index = 0;
for (const auto& v : list)
{
data[index] = v;
index++;
}
}
2024-09-19 17:39:06 -04:00
constexpr explicit generalized_matrix(const std::array<T, rows * columns>& dat)
2024-09-19 15:12:38 -04:00
{
for (u32 i = 0; i < columns; i++)
for (u32 j = 0; j < rows; j++)
data[i][j] = dat[j + i * columns];
}
2024-09-19 17:39:06 -04:00
constexpr explicit generalized_matrix(const T dat[rows * columns])
{
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < columns; i++)
for (u32 j = 0; j < rows; j++)
data[i][j] = dat[j + i * columns];
}
2024-09-19 17:39:06 -04:00
constexpr explicit generalized_matrix(const blt::vec<T, rows> dat[columns])
{
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < columns; i++)
data[i] = dat[i];
}
2024-09-19 17:39:06 -04:00
constexpr static matrix_t make_empty()
2024-09-19 02:01:18 -04:00
{
return matrix_t{init_type::EMPTY};
2024-09-19 02:01:18 -04:00
}
2024-09-19 17:39:06 -04:00
constexpr static matrix_t make_identity()
2024-09-19 02:01:18 -04:00
{
static_assert(rows == columns && "Identity matrix must be square!");
return matrix_t{init_type::IDENTITY};
}
2024-09-19 17:39:06 -04:00
constexpr auto& set_identity()
{
2024-09-19 02:01:18 -04:00
for (blt::u32 i = 0; i < rows; i++)
data[i][i] = 1;
return *this;
}
2024-09-19 17:39:06 -04:00
constexpr generalized_matrix<T, columns, rows> transpose() const
{
generalized_matrix<T, columns, rows> mat;
for (blt::u32 i = 0; i < columns; i++)
{
for (blt::u32 j = 0; j < rows; j++)
mat[j][i] = data[i][j];
}
2024-09-19 02:01:18 -04:00
return mat;
}
2024-09-19 23:48:58 -04:00
T magnitude() const
{
2024-09-20 00:37:39 -04:00
T ret{};
2024-09-19 23:48:58 -04:00
for (blt::u32 i = 0; i < columns; i++)
{
for (blt::u32 j = 0; j < rows; j++)
ret += (data[i][j] * data[i][j]);
}
return std::sqrt(ret);
}
matrix_t normalize() const
{
auto mag = magnitude();
matrix_t mat = *this;
if (mag == 0)
return mat;
return mat / mag;
}
2024-09-19 17:39:06 -04:00
constexpr inline const blt::vec<T, rows>& operator[](u32 column) const
{
return data[column];
}
2024-09-19 17:39:06 -04:00
constexpr inline blt::vec<T, rows>& operator[](u32 column)
{
return data[column];
}
2024-09-19 17:39:06 -04:00
[[nodiscard]] constexpr inline T m(u32 row, u32 column) const
{
return data[column][row];
};
2024-09-19 17:39:06 -04:00
constexpr inline T m(u32 row, u32 column, T value)
{
return data[column][row] = value;
};
2024-09-20 00:37:39 -04:00
/**
* Assign to this matrix from the row information in each column of a matrix
* Where columns can be assigned directly from each-other, row stored data must be assigned this way
* this was hacked together for an assignment and a better way is a TODO;
* @param to_column column in this matrix to assign to
* @param row the row place that the value is store in to assign from. Defaults to the first element in each column
*/
template<blt::u32 p>
constexpr inline matrix_t& assign_to_column_from_column_rows(generalized_matrix<T, p, rows> mat, blt::u32 to_column, blt::u32 row = 0)
{
for (blt::u32 j = 0; j < rows; j++)
data[to_column][j] = mat[j][row];
return *this;
}
constexpr inline matrix_t& operator+=(const matrix_t& other)
{
for (blt::u32 i = 0; i < columns; i++)
data[i] += other[i];
return *this;
}
constexpr inline matrix_t& operator-=(const matrix_t& other)
{
for (blt::u32 i = 0; i < columns; i++)
data[i] -= other[i];
return *this;
}
constexpr inline matrix_t& operator*=(const matrix_t& other)
{
for (blt::u32 i = 0; i < columns; i++)
data[i] *= other[i];
return *this;
}
constexpr inline matrix_t& operator/=(const matrix_t& other)
{
for (blt::u32 i = 0; i < columns; i++)
data[i] /= other[i];
return *this;
}
2024-09-19 02:01:18 -04:00
// adds the two mat4x4 left and right
2024-09-19 17:39:06 -04:00
constexpr inline friend matrix_t operator+(const matrix_t& left, const matrix_t& right)
2024-09-19 02:01:18 -04:00
{
matrix_t ret = left;
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < columns; i++)
2024-09-19 02:01:18 -04:00
ret[i] += right.data[i];
return ret;
}
// subtracts the right mat4x4 from the left.
2024-09-19 17:39:06 -04:00
constexpr inline friend matrix_t operator-(const matrix_t& left, const matrix_t& right)
2024-09-19 02:01:18 -04:00
{
matrix_t ret = left;
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < columns; i++)
2024-09-19 02:01:18 -04:00
ret[i] -= right.data[i];
return ret;
}
// multiples the left with the right
2024-09-19 17:39:06 -04:00
template<blt::u32 p, typename Ret = generalized_matrix<T, rows, p>, std::enable_if_t<!(rows == 1 && p == 1), bool> = true>
constexpr inline friend Ret operator*(const matrix_t& left, const generalized_matrix<T, columns, p>& right)
2024-09-19 02:01:18 -04:00
{
Ret mat = Ret::make_empty();
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < rows; i++)
2024-09-19 02:01:18 -04:00
{
2024-09-19 15:12:38 -04:00
for (u32 j = 0; j < p; j++)
2024-09-19 02:01:18 -04:00
{
2024-09-19 15:12:38 -04:00
for (u32 k = 0; k < columns; k++)
2024-09-19 02:01:18 -04:00
mat.m(i, j, mat.m(i, j) + left.m(i, k) * right.m(k, j));
}
}
return mat;
}
2024-09-19 17:39:06 -04:00
template<blt::u32 p, std::enable_if_t<rows == 1 && p == 1, bool> = true>
constexpr inline friend T operator*(const matrix_t& left, const generalized_matrix<T, columns, p>& right)
{
T ret{};
for (u32 i = 0; i < rows; i++)
{
for (u32 j = 0; j < p; j++)
{
for (u32 k = 0; k < columns; k++)
ret += left.m(i, k) * right.m(k, j);
}
}
return ret;
}
constexpr inline friend vec<T, rows> operator*(const matrix_t& left, const vec<T, columns>& right)
2024-09-19 02:01:18 -04:00
{
2024-09-19 15:12:38 -04:00
vec<T, rows> ret;
2024-09-19 02:01:18 -04:00
2024-09-19 15:12:38 -04:00
for (u32 r = 0; r < rows; r++)
2024-09-19 02:01:18 -04:00
{
2024-09-19 15:12:38 -04:00
for (u32 c = 0; c < columns; c++)
2024-09-19 02:01:18 -04:00
ret[r] = ret[r] + left.m(r, c) * right[c];
}
return ret;
}
// multiplies the const c with each element in the mat4x4 v
2024-09-19 17:39:06 -04:00
constexpr inline friend matrix_t operator*(float c, const matrix_t& v)
2024-09-19 02:01:18 -04:00
{
matrix_t mat = make_empty();
2024-09-19 02:01:18 -04:00
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < columns; i++)
2024-09-19 02:01:18 -04:00
{
mat.data[i] = c * v.data[i];
}
return mat;
}
// same as above but for right sided constants
2024-09-19 17:39:06 -04:00
constexpr inline friend matrix_t operator*(const matrix_t& v, float c)
2024-09-19 02:01:18 -04:00
{
matrix_t mat = make_empty();
2024-09-19 02:01:18 -04:00
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < columns; i++)
2024-09-19 02:01:18 -04:00
{
mat.data[i] = v.data[i] * c;
}
return mat;
}
// divides the mat4x4 by the constant c
2024-09-19 17:39:06 -04:00
constexpr inline friend matrix_t operator/(const matrix_t& v, float c)
2024-09-19 02:01:18 -04:00
{
matrix_t mat = make_empty();
2024-09-19 02:01:18 -04:00
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < columns; i++)
2024-09-19 02:01:18 -04:00
{
mat.data[i] = v.data[i] / c;
}
return mat;
}
// divides each element in the mat4x4 by over the constant
2024-09-19 17:39:06 -04:00
constexpr inline friend matrix_t operator/(float c, const matrix_t& v)
2024-09-19 02:01:18 -04:00
{
matrix_t mat = make_empty();
2024-09-19 02:01:18 -04:00
2024-09-19 15:12:38 -04:00
for (u32 i = 0; i < columns; i++)
2024-09-19 02:01:18 -04:00
{
2024-09-19 15:12:38 -04:00
for (u32 j = 0; j < rows; j++)
2024-09-19 02:01:18 -04:00
mat.data[i][j] = c / v.data[i][j];
}
return mat;
}
2024-09-19 15:12:38 -04:00
2024-09-19 17:39:06 -04:00
constexpr inline friend bool operator==(const matrix_t& left, const matrix_t& right)
2024-09-19 15:12:38 -04:00
{
for (blt::u32 i = 0; i < columns; i++)
{
if (left.data[i] != right.data[i])
return false;
}
return true;
}
2024-09-19 17:39:06 -04:00
constexpr inline friend bool operator!=(const matrix_t& left, const matrix_t& right)
2024-09-19 15:12:38 -04:00
{
return !(left == right);
}
2024-09-19 02:01:18 -04:00
private:
2024-09-19 15:12:38 -04:00
blt::vec<T, rows> data[columns];
2024-09-19 02:01:18 -04:00
};
2024-05-01 03:27:17 -04:00
class mat4x4
{
static_assert(std::is_trivially_copyable_v<blt::vec4> && "Vector must be trivially copyable!");
protected:
// 4x4 = 16
// union dataType
// {
// float single[16];
// float dim[4][4];
// blt::vec4 v[4];
// };
blt::vec4 data[4];
friend mat4x4 operator+(const mat4x4& left, const mat4x4& right);
friend mat4x4 operator-(const mat4x4& left, const mat4x4& right);
friend mat4x4 operator*(const mat4x4& left, const mat4x4& right);
friend mat4x4 operator*(float c, const mat4x4& v);
friend mat4x4 operator*(const mat4x4& v, float c);
friend mat4x4 operator/(const mat4x4& v, float c);
friend mat4x4 operator/(float c, const mat4x4& v);
public:
static mat4x4 make_empty()
{
mat4x4 ret;
ret.m00(0);
ret.m11(0);
ret.m22(0);
ret.m33(0);
return ret;
}
2024-05-01 03:27:17 -04:00
mat4x4()
{
// for (float& i : data.single)
// i = 0;
// set identity matrix default
m00(1);
m11(1);
m22(1);
m33(1);
}
2024-05-01 03:27:17 -04:00
mat4x4(const blt::vec4& c1, const blt::vec4& c2, const blt::vec4& c3, const blt::vec4& c4)
{
// dangerous?
// std::memcpy(data.dim[0], c1.data(), 4 * sizeof(float));
// std::memcpy(data.dim[1], c2.data(), 4 * sizeof(float));
// std::memcpy(data.dim[2], c3.data(), 4 * sizeof(float));
// std::memcpy(data.dim[3], c4.data(), 4 * sizeof(float));
data[0] = c1;
data[1] = c2;
data[2] = c3;
data[3] = c4;
2024-05-01 03:27:17 -04:00
}
mat4x4(const mat4x4& mat)
{
for (int i = 0; i < 4; i++)
2024-05-01 03:27:17 -04:00
{
data[i] = mat.data[i];
}
}
2024-05-01 03:27:17 -04:00
mat4x4& operator=(const mat4x4& copy)
{
2023-04-05 17:21:19 -04:00
if (&copy == this)
return *this;
for (int i = 0; i < 4; i++)
2024-05-01 03:27:17 -04:00
{
data[i] = copy.data[i];
2023-04-05 17:21:19 -04:00
}
2023-04-21 21:04:19 -04:00
return *this;
2023-04-05 17:21:19 -04:00
}
2024-05-01 03:27:17 -04:00
explicit mat4x4(const float dat[16])
{
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
data[i][j] = dat[j + i * 4];
}
explicit mat4x4(const blt::vec4 dat[4])
{
for (int i = 0; i < 4; i++)
data[i] = dat[i];
}
2024-05-01 03:27:17 -04:00
inline mat4x4& translate(float x, float y, float z)
{
mat4x4 translation_mat{};
/**
* 9.005 Are OpenGL matrices column-major or row-major?
* For programming purposes, OpenGL matrices are 16-value arrays with base vectors laid out contiguously in memory.
* The translation components occupy the 13th, 14th, and 15th elements of the 16-element matrix,
* where indices are numbered from 1 to 16 as described in section 2.11.2 of the OpenGL 2.1 Specification.
*/
2023-04-01 02:55:00 -04:00
translation_mat.m03(x);
translation_mat.m13(y);
translation_mat.m23(z);
*this = *this * translation_mat;
return *this;
}
2024-05-01 03:27:17 -04:00
inline mat4x4& translate(const vec4& vec)
{ return translate(vec[0], vec[1], vec[2]); }
inline mat4x4& translate(const vec3& vec)
{ return translate(vec[0], vec[1], vec[2]); }
inline mat4x4& translate(const vec2& vec)
{ return translate(vec[0], vec[1], 0); }
2024-05-01 03:27:17 -04:00
inline mat4x4& scale(float x, float y, float z)
{
mat4x4 scale_mat{};
2023-04-01 02:55:00 -04:00
m00(m00() * x);
m11(m11() * y);
2023-07-11 18:35:29 -04:00
m22(m22() * z);
2023-04-01 02:55:00 -04:00
*this = *this * scale_mat;
return *this;
}
2024-05-01 03:27:17 -04:00
inline mat4x4& scale(const vec4& vec)
{ return scale(vec[0], vec[1], vec[2]); }
inline mat4x4& scale(const vec3& vec)
{ return scale(vec[0], vec[1], vec[2]); }
inline mat4x4& scale(const vec2& vec)
{ return scale(vec[0], vec[1], 1.0f); }
2023-03-10 16:52:15 -05:00
// angle in radians
2024-05-01 03:27:17 -04:00
inline mat4x4& rotateX(float angle)
{
mat4x4 rotationMatrix{};
2023-03-10 16:52:15 -05:00
rotationMatrix.m(1, 1, std::cos(angle));
rotationMatrix.m(1, 2, -std::sin(angle));
rotationMatrix.m(2, 1, std::sin(angle));
rotationMatrix.m(2, 2, std::cos(angle));
*this = *this * rotationMatrix;
return *this;
}
2024-05-01 03:27:17 -04:00
inline mat4x4& rotateY(float angle)
{
mat4x4 rotationMatrix{};
2023-03-10 16:52:15 -05:00
rotationMatrix.m(0, 0, std::cos(angle));
rotationMatrix.m(0, 2, std::sin(angle));
rotationMatrix.m(2, 0, -std::sin(angle));
rotationMatrix.m(2, 2, std::cos(angle));
2024-05-01 03:27:17 -04:00
2023-03-10 16:52:15 -05:00
*this = *this * rotationMatrix;
2024-05-01 03:27:17 -04:00
2023-03-10 16:52:15 -05:00
return *this;
}
2024-05-01 03:27:17 -04:00
inline mat4x4& rotateZ(float angle)
{
mat4x4 rotationMatrix{};
2023-03-10 16:52:15 -05:00
rotationMatrix.m(0, 0, std::cos(angle));
rotationMatrix.m(0, 1, -std::sin(angle));
rotationMatrix.m(1, 0, std::sin(angle));
rotationMatrix.m(1, 1, std::cos(angle));
2024-05-01 03:27:17 -04:00
2023-03-10 16:52:15 -05:00
*this = *this * rotationMatrix;
2024-05-01 03:27:17 -04:00
2023-03-10 16:52:15 -05:00
return *this;
}
2024-05-01 03:27:17 -04:00
[[nodiscard]] mat4x4 transpose() const
{
mat4x4 copy{*this};
2024-05-01 03:27:17 -04:00
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)
{
copy.m(j, i, m(i, j));
}
}
return copy;
}
2024-05-01 03:27:17 -04:00
[[nodiscard]] float determinant() const
{
return m00() * (m11() * m22() * m33() + m12() * m23() * m31() + m13() * m21() * m32()
- m31() * m22() * m13() - m32() * m23() * m11() - m33() * m21() * m12())
- m10() * (m01() * m22() * m33() + m02() * m23() * m31() + m03() * m21() * m32()
- m31() * m32() * m03() - m32() * m23() * m01() - m33() * m21() * m02())
+ m20() * (m01() * m12() * m33() + m02() * m13() * m31() + m03() * m11() * m32()
- m31() * m12() * m03() - m32() * m13() * m01() - m33() * m11() * m02())
- m30() * (m01() * m12() * m23() + m02() * m13() * m21() + m03() * m11() * m22()
- m21() * m12() * m03() - m22() * m13() * m01() - m23() * m11() * m02());
}
[[nodiscard]] mat4x4 adjugate() const
{
auto& m = *this;
auto Coef00 = m[2][2] * m[3][3] - m[3][2] * m[2][3];
auto Coef02 = m[1][2] * m[3][3] - m[3][2] * m[1][3];
auto Coef03 = m[1][2] * m[2][3] - m[2][2] * m[1][3];
2024-05-01 03:27:17 -04:00
auto Coef04 = m[2][1] * m[3][3] - m[3][1] * m[2][3];
auto Coef06 = m[1][1] * m[3][3] - m[3][1] * m[1][3];
auto Coef07 = m[1][1] * m[2][3] - m[2][1] * m[1][3];
2024-05-01 03:27:17 -04:00
auto Coef08 = m[2][1] * m[3][2] - m[3][1] * m[2][2];
auto Coef10 = m[1][1] * m[3][2] - m[3][1] * m[1][2];
auto Coef11 = m[1][1] * m[2][2] - m[2][1] * m[1][2];
2024-05-01 03:27:17 -04:00
auto Coef12 = m[2][0] * m[3][3] - m[3][0] * m[2][3];
auto Coef14 = m[1][0] * m[3][3] - m[3][0] * m[1][3];
auto Coef15 = m[1][0] * m[2][3] - m[2][0] * m[1][3];
2024-05-01 03:27:17 -04:00
auto Coef16 = m[2][0] * m[3][2] - m[3][0] * m[2][2];
auto Coef18 = m[1][0] * m[3][2] - m[3][0] * m[1][2];
auto Coef19 = m[1][0] * m[2][2] - m[2][0] * m[1][2];
auto Coef20 = m[2][0] * m[3][1] - m[3][0] * m[2][1];
auto Coef22 = m[1][0] * m[3][1] - m[3][0] * m[1][1];
auto Coef23 = m[1][0] * m[2][1] - m[2][0] * m[1][1];
blt::vec4 Fac0(Coef00, Coef00, Coef02, Coef03);
blt::vec4 Fac1(Coef04, Coef04, Coef06, Coef07);
blt::vec4 Fac2(Coef08, Coef08, Coef10, Coef11);
blt::vec4 Fac3(Coef12, Coef12, Coef14, Coef15);
blt::vec4 Fac4(Coef16, Coef16, Coef18, Coef19);
blt::vec4 Fac5(Coef20, Coef20, Coef22, Coef23);
blt::vec4 Vec0(m[1][0], m[0][0], m[0][0], m[0][0]);
blt::vec4 Vec1(m[1][1], m[0][1], m[0][1], m[0][1]);
blt::vec4 Vec2(m[1][2], m[0][2], m[0][2], m[0][2]);
blt::vec4 Vec3(m[1][3], m[0][3], m[0][3], m[0][3]);
blt::vec4 Inv0(Vec1 * Fac0 - Vec2 * Fac1 + Vec3 * Fac2);
blt::vec4 Inv1(Vec0 * Fac0 - Vec2 * Fac3 + Vec3 * Fac4);
blt::vec4 Inv2(Vec0 * Fac1 - Vec1 * Fac3 + Vec3 * Fac5);
blt::vec4 Inv3(Vec0 * Fac2 - Vec1 * Fac4 + Vec2 * Fac5);
blt::vec4 SignA(+1, -1, +1, -1);
blt::vec4 SignB(-1, +1, -1, +1);
return mat4x4(Inv0 * SignA, Inv1 * SignB, Inv2 * SignA, Inv3 * SignB);
2024-05-01 03:27:17 -04:00
}
2024-05-01 03:27:17 -04:00
[[nodiscard]] mat4x4 inverse() const
{
auto& m = *this;
auto Inverse = adjugate();
blt::vec4 Row0(Inverse[0][0], Inverse[1][0], Inverse[2][0], Inverse[3][0]);
blt::vec4 Dot0(m[0] * Row0);
auto Dot1 = (Dot0.x() + Dot0.y()) + (Dot0.z() + Dot0.w());
auto OneOverDeterminant = 1.0f / Dot1;
return Inverse * OneOverDeterminant;
}
inline const blt::vec4& operator[](int column) const
{
return data[column];
}
inline blt::vec4& operator[](int column)
{
return data[column];
2024-05-01 03:27:17 -04:00
}
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m(int row, int column) const
{ return data[column][row]; };
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m00() const
{ return m(0, 0); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m10() const
{ return m(1, 0); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m20() const
{ return m(2, 0); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m30() const
{ return m(3, 0); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m01() const
{ return m(0, 1); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m11() const
{ return m(1, 1); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m21() const
{ return m(2, 1); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m31() const
{ return m(3, 1); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m02() const
{ return m(0, 2); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m12() const
{ return m(1, 2); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m22() const
{ return m(2, 2); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m32() const
{ return m(3, 2); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m03() const
{ return m(0, 3); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m13() const
{ return m(1, 3); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m23() const
{ return m(2, 3); }
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float m33() const
{ return m(3, 3); }
2024-05-01 03:27:17 -04:00
inline float m(int row, int column, float value)
{ return data[column][row] = value; };
2024-05-01 03:27:17 -04:00
inline float m00(float d)
{ return m(0, 0, d); }
2024-05-01 03:27:17 -04:00
inline float m10(float d)
{ return m(1, 0, d); }
2024-05-01 03:27:17 -04:00
inline float m20(float d)
{ return m(2, 0, d); }
2024-05-01 03:27:17 -04:00
inline float m30(float d)
{ return m(3, 0, d); }
2024-05-01 03:27:17 -04:00
inline float m01(float d)
{ return m(0, 1, d); }
2024-05-01 03:27:17 -04:00
inline float m11(float d)
{ return m(1, 1, d); }
2024-05-01 03:27:17 -04:00
inline float m21(float d)
{ return m(2, 1, d); }
2024-05-01 03:27:17 -04:00
inline float m31(float d)
{ return m(3, 1, d); }
2024-05-01 03:27:17 -04:00
inline float m02(float d)
{ return m(0, 2, d); }
2024-05-01 03:27:17 -04:00
inline float m12(float d)
{ return m(1, 2, d); }
2024-05-01 03:27:17 -04:00
inline float m22(float d)
{ return m(2, 2, d); }
2024-05-01 03:27:17 -04:00
inline float m32(float d)
{ return m(3, 2, d); }
2024-05-01 03:27:17 -04:00
inline float m03(float d)
{ return m(0, 3, d); }
2024-05-01 03:27:17 -04:00
inline float m13(float d)
{ return m(1, 3, d); }
inline float m23(float d)
{ return m(2, 3, d); }
2024-05-01 03:27:17 -04:00
inline float m33(float d)
{ return m(3, 3, d); }
[[nodiscard]] inline float w(int row, int column) const
{ return data[column - 1][row - 1]; };
2024-05-01 03:27:17 -04:00
[[nodiscard]] inline float w11() const
{ return m(0, 0); }
[[nodiscard]] inline float w21() const
{ return m(1, 0); }
[[nodiscard]] inline float w31() const
{ return m(2, 0); }
[[nodiscard]] inline float w41() const
{ return m(3, 0); }
[[nodiscard]] inline float w12() const
{ return m(0, 1); }
[[nodiscard]] inline float w22() const
{ return m(1, 1); }
[[nodiscard]] inline float w32() const
{ return m(2, 1); }
[[nodiscard]] inline float w42() const
{ return m(3, 1); }
[[nodiscard]] inline float w13() const
{ return m(0, 2); }
[[nodiscard]] inline float w23() const
{ return m(1, 2); }
[[nodiscard]] inline float w33() const
{ return m(2, 2); }
[[nodiscard]] inline float w43() const
{ return m(3, 2); }
[[nodiscard]] inline float w14() const
{ return m(0, 3); }
[[nodiscard]] inline float w24() const
{ return m(1, 3); }
[[nodiscard]] inline float w34() const
{ return m(2, 3); }
[[nodiscard]] inline float w44() const
{ return m(3, 3); }
inline float w(int row, int column, float value)
{ return data[column - 1][row - 1] = value; };
2024-05-01 03:27:17 -04:00
inline float w11(float d)
{ return m(0, 0, d); }
inline float w21(float d)
{ return m(1, 0, d); }
inline float w31(float d)
{ return m(2, 0, d); }
inline float w41(float d)
{ return m(3, 0, d); }
inline float w12(float d)
{ return m(0, 1, d); }
inline float w22(float d)
{ return m(1, 1, d); }
inline float w32(float d)
{ return m(2, 1, d); }
inline float w42(float d)
{ return m(3, 1, d); }
inline float w13(float d)
{ return m(0, 2, d); }
inline float w23(float d)
{ return m(1, 2, d); }
inline float w33(float d)
{ return m(2, 2, d); }
inline float w43(float d)
{ return m(3, 2, d); }
inline float w14(float d)
{ return m(0, 3, d); }
inline float w24(float d)
{ return m(1, 3, d); }
inline float w34(float d)
{ return m(2, 3, d); }
inline float w44(float d)
{ return m(3, 3, d); }
inline float* ptr()
{ return data[0].data(); }
};
// adds the two mat4x4 left and right
2024-05-01 03:27:17 -04:00
inline mat4x4 operator+(const mat4x4& left, const mat4x4& right)
{
mat4x4 ret = left;
for (int i = 0; i < 4; i++)
ret[i] += right.data[i];
return ret;
}
// subtracts the right mat4x4 from the left.
2024-05-01 03:27:17 -04:00
inline mat4x4 operator-(const mat4x4& left, const mat4x4& right)
{
mat4x4 ret = left;
for (int i = 0; i < 4; i++)
ret[i] -= right.data[i];
return ret;
}
// since matrices are made identity by default, we need to create the result collector matrix without identity
// otherwise the diagonal will be 1 off and cause weird results (see black screen issue)
constexpr float emptyMatrix[16] = {0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0};
// multiples the left with the right
2024-05-01 03:27:17 -04:00
inline mat4x4 operator*(const mat4x4& left, const mat4x4& right)
{
mat4x4 mat = mat4x4::make_empty();
// TODO: check avx with this??
2024-05-01 03:27:17 -04:00
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)
{
for (int k = 0; k < 4; k++)
{
mat.m(i, j, mat.m(i, j) + left.m(i, k) * right.m(k, j));
}
}
}
return mat;
}
2024-05-01 03:27:17 -04:00
inline vec4 operator*(const mat4x4& left, const vec4& right)
{
vec4 ret{0, 0, 0, 0};
2023-03-08 21:26:42 -05:00
2024-05-01 03:27:17 -04:00
for (int m = 0; m < 4; m++)
{
for (int n = 0; n < 4; n++)
{
2023-03-08 21:26:42 -05:00
ret[m] = ret[m] + left.m(m, n) * right[n];
}
}
2024-05-01 03:27:17 -04:00
2023-03-08 21:26:42 -05:00
return ret;
}
template<typename T, unsigned long size>
2024-05-01 03:27:17 -04:00
inline vec4 operator*(const mat4x4& left, const vec<T, size>& right)
{
vec4 ret{0, 0, 0, 0};
for (int i = 0; i < size; i++)
2024-05-01 03:27:17 -04:00
ret[i] = (float) right[i];
return left * ret;
}
// multiplies the const c with each element in the mat4x4 v
2024-05-01 03:27:17 -04:00
inline mat4x4 operator*(float c, const mat4x4& v)
{
mat4x4 mat{};
for (int i = 0; i < 4; i++)
2024-05-01 03:27:17 -04:00
{
mat.data[i] = c * v.data[i];
}
return mat;
}
// same as above but for right sided constants
2024-05-01 03:27:17 -04:00
inline mat4x4 operator*(const mat4x4& v, float c)
{
mat4x4 mat{};
for (int i = 0; i < 4; i++)
2024-05-01 03:27:17 -04:00
{
mat.data[i] = v.data[i] * c;
}
return mat;
}
// divides the mat4x4 by the constant c
2024-05-01 03:27:17 -04:00
inline mat4x4 operator/(const mat4x4& v, float c)
{
mat4x4 mat{};
for (int i = 0; i < 4; i++)
2024-05-01 03:27:17 -04:00
{
mat.data[i] = v.data[i] / c;
}
return mat;
}
// divides each element in the mat4x4 by over the constant
2024-05-01 03:27:17 -04:00
inline mat4x4 operator/(float c, const mat4x4& v)
{
mat4x4 mat{};
for (int i = 0; i < 4; i++)
2024-05-01 03:27:17 -04:00
{
for (int j = 0; j < 4; j++)
mat.data[i][j] = c / v.data[i][j];
}
return mat;
}
// https://www.scratchapixel.com/lessons/3d-basic-rendering/perspective-and-orthographic-projection-matrix/building-basic-perspective-projection-matrix.html
// https://ogldev.org/www/tutorial12/tutorial12.html
// http://www.songho.ca/opengl/gl_projectionmatrix.html
2024-05-01 03:27:17 -04:00
static inline mat4x4 perspective(float fov, float aspect_ratio, float near, float far)
{
mat4x4 perspectiveMat4x4 = mat4x4::make_empty();
2024-05-01 03:27:17 -04:00
float halfTan = tanf(fov * 0.5f * (float) M_PI / 180.0f);
perspectiveMat4x4.m00(float(1.0 / (aspect_ratio * halfTan)));
perspectiveMat4x4.m11(float(1.0 / halfTan));
perspectiveMat4x4.m22(float(-((far + near) / (far - near))));
2023-02-28 23:43:56 -05:00
perspectiveMat4x4.m32(-1);
perspectiveMat4x4.m23(float(-((2 * near * far) / (far - near))));
return perspectiveMat4x4;
}
2024-05-01 03:27:17 -04:00
static inline mat4x4 ortho(float left, float right, float top, float bottom, float near, float far)
{
mat4x4 perspectiveMat4x4 = mat4x4::make_empty();
2024-05-01 03:27:17 -04:00
perspectiveMat4x4.m00(2 / (right - left));
perspectiveMat4x4.m11(2 / (top - bottom));
perspectiveMat4x4.m22(2 / (far - near));
perspectiveMat4x4.m33(1);
2023-02-28 23:43:56 -05:00
perspectiveMat4x4.m03(-(right + left) / (right - left));
perspectiveMat4x4.m13(-(top + bottom) / (top - bottom));
perspectiveMat4x4.m23(-(far + near) / (far - near));
return perspectiveMat4x4;
}
2024-05-01 03:27:17 -04:00
}
#endif //BLT_TESTS_MATRIX_H