mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Fix construction of identity quaternion
Signed-off-by: Gaoyang Zhang <gy@blurgy.xyz>
This commit is contained in:
parent
f931c4996a
commit
37842c7400
1 changed files with 4 additions and 0 deletions
|
@ -214,7 +214,11 @@ namespace detail
|
|||
{
|
||||
GLM_FUNC_QUALIFIER GLM_CONSTEXPR static genType identity()
|
||||
{
|
||||
# ifdef GLM_FORCE_QUAT_DATA_WXYZ
|
||||
return genType(1, 0, 0, 0);
|
||||
# else
|
||||
return genType(0, 0, 0, 1);
|
||||
# endif
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue