|
|
@ -54,17 +54,19 @@ namespace glm |
|
|
|
template <typename U, precision Q> |
|
|
|
template <typename U, precision Q> |
|
|
|
friend tvec2<U, Q> operator/(tvec2<U, Q> const & v, tmat2x2<U, Q> const & m); |
|
|
|
friend tvec2<U, Q> operator/(tvec2<U, Q> const & v, tmat2x2<U, Q> const & m); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# if GLM_META_PROG_HELPERS |
|
|
|
# if GLM_HAS_CONSTEXPR |
|
|
|
# if GLM_HAS_CONSTEXPR |
|
|
|
static GLM_CONSTEXPR length_t components = 2; |
|
|
|
static GLM_CONSTEXPR length_t components = 2; |
|
|
|
static GLM_CONSTEXPR length_t cols = 2; |
|
|
|
static GLM_CONSTEXPR length_t columns = 2; |
|
|
|
static GLM_CONSTEXPR length_t rows = 2; |
|
|
|
static GLM_CONSTEXPR length_t rows = 2; |
|
|
|
static GLM_CONSTEXPR precision prec = P; |
|
|
|
static GLM_CONSTEXPR precision prec = P; |
|
|
|
# else |
|
|
|
# else |
|
|
|
static const length_t components = 2; |
|
|
|
static const length_t components = 2; |
|
|
|
static const length_t cols = 2; |
|
|
|
static const length_t columns = 2; |
|
|
|
static const length_t rows = 2; |
|
|
|
static const length_t rows = 2; |
|
|
|
static const precision prec = P; |
|
|
|
static const precision prec = P; |
|
|
|
# endif |
|
|
|
# endif//GLM_HAS_CONSTEXPR
|
|
|
|
|
|
|
|
# endif//GLM_META_PROG_HELPERS
|
|
|
|
|
|
|
|
|
|
|
|
private: |
|
|
|
private: |
|
|
|
/// @cond DETAIL
|
|
|
|
/// @cond DETAIL
|
|
|
|