mirror of
https://github.com/g-truc/glm.git
synced 2024-11-15 06:24:34 +00:00
17 lines
368 B
C++
17 lines
368 B
C++
/// @ref core
|
|
/// @file glm/mat4x2.hpp
|
|
|
|
#pragma once
|
|
#include "matrix_dmat4x2.hpp"
|
|
#include "matrix_dmat4x2_precision.hpp"
|
|
#include "matrix_mat4x2.hpp"
|
|
#include "matrix_mat4x2_precision.hpp"
|
|
|
|
namespace glm
|
|
{
|
|
#if GLM_HAS_TEMPLATE_ALIASES
|
|
template <typename T, qualifier Q = defaultp> using tmat4x2 = mat<4, 2, T, Q>;
|
|
#endif//GLM_HAS_TEMPLATE_ALIASES
|
|
|
|
}//namespace glm
|