mirror of
https://github.com/icaven/glm.git
synced 2025-12-06 16:56:56 +08:00
17 lines
392 B
C++
17 lines
392 B
C++
/// @ref core
|
|
/// @file glm/mat3x4.hpp
|
|
|
|
#pragma once
|
|
#include "./ext/matrix_dmat3x4.hpp"
|
|
#include "./ext/matrix_dmat3x4_precision.hpp"
|
|
#include "./ext/matrix_mat3x4.hpp"
|
|
#include "./ext/matrix_mat3x4_precision.hpp"
|
|
|
|
namespace glm
|
|
{
|
|
#if GLM_HAS_TEMPLATE_ALIASES
|
|
template <typename T, qualifier Q = defaultp> using tmat3x4 = mat<3, 4, T, Q>;
|
|
#endif//GLM_HAS_TEMPLATE_ALIASES
|
|
|
|
}//namespace glm
|