mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
vec.cpp
Go to the documentation of this file.
1#include "vec.hpp"
2namespace mal_math
3{
4 template struct vec<2, float>;
5 template struct vec<2, double>;
6 template struct vec<2, int>;
7 template struct vec<3, float>;
8 template struct vec<3, double>;
9 template struct vec<3, int>;
10 template struct vec<4, float>;
11 template struct vec<4, double>;
12 template struct vec<4, int>;
13} // namespace mal_math
Contains mathematical utility functions and classes.