|
|
@ -32,6 +32,8 @@ |
|
|
|
|
|
|
|
|
|
|
|
namespace glm |
|
|
|
namespace glm |
|
|
|
{ |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ifdef GLM_STATIC_CONST_MEMBERS |
|
|
|
template <typename T, precision P> |
|
|
|
template <typename T, precision P> |
|
|
|
const tvec4<T, P> tvec4<T, P>::ZERO = |
|
|
|
const tvec4<T, P> tvec4<T, P>::ZERO = |
|
|
|
tvec4<T, P>(static_cast<T>(0), static_cast<T>(0), static_cast<T>(0), static_cast<T>(0)); |
|
|
|
tvec4<T, P>(static_cast<T>(0), static_cast<T>(0), static_cast<T>(0), static_cast<T>(0)); |
|
|
@ -95,7 +97,7 @@ const tvec4<T, P> tvec4<T, P>::YZW = |
|
|
|
template <typename T, precision P> |
|
|
|
template <typename T, precision P> |
|
|
|
const tvec4<T, P> tvec4<T, P>::XYZW = |
|
|
|
const tvec4<T, P> tvec4<T, P>::XYZW = |
|
|
|
tvec4<T, P>(static_cast<T>(1), static_cast<T>(1), static_cast<T>(1), static_cast<T>(1)); |
|
|
|
tvec4<T, P>(static_cast<T>(1), static_cast<T>(1), static_cast<T>(1), static_cast<T>(1)); |
|
|
|
|
|
|
|
# endif |
|
|
|
// -- Implicit basic constructors -- |
|
|
|
// -- Implicit basic constructors -- |
|
|
|
|
|
|
|
|
|
|
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT) |
|
|
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS || !defined(GLM_FORCE_NO_CTOR_INIT) |
|
|
|