summary refs log tree commit diff
path: root/src/Math/MVP.hpp
blob: c3fb64fef3683f42d4843411e47a111e0b5509e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "Math.hpp"

namespace Math::MVP {

Matrix<4, 4> model(Vector<3> position, Rotation angles);
Matrix<4, 4> view(Vector<3> position, Rotation angles);
Matrix<4, 4> projection(float aspect, float fov, float near, float far);

}