Cleanup aliases
This commit is contained in:
parent
71278c460a
commit
2369a8146c
@ -44,6 +44,8 @@ namespace math{
|
||||
template<typename T>
|
||||
using vec4 = vector<T,4>;
|
||||
|
||||
template<typename T>
|
||||
using quat = quaternion<T>;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@ -253,14 +253,6 @@ namespace math{
|
||||
template<typename T, typename U, size_t C, size_t R>
|
||||
constexpr decltype(auto) operator-=(matrix<T,R,C>& left, const matrix<U,R,C>& right);
|
||||
|
||||
|
||||
template<typename T>
|
||||
using mat2 = matrix<T,2,2>;
|
||||
template<typename T>
|
||||
using mat3 = matrix<T,3,3>;
|
||||
template<typename T>
|
||||
using mat4 = matrix<T,4,4>;
|
||||
|
||||
}
|
||||
|
||||
#include "mat.tpp"
|
||||
|
||||
@ -95,13 +95,6 @@ namespace math{
|
||||
template<typename T, typename U, size_t R>
|
||||
constexpr decltype(auto) operator-=(vector<T,R>& left, const vector<U,R>& right);
|
||||
|
||||
|
||||
template<typename T>
|
||||
using vec2 = vector<T,2>;
|
||||
template<typename T>
|
||||
using vec3 = vector<T,3>;
|
||||
template<typename T>
|
||||
using vec4 = vector<T,4>;
|
||||
}
|
||||
|
||||
#include "vec.tpp"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user