You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
16 lines
392 B
16 lines
392 B
/// @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
|
|
|