mirror of
https://github.com/g-truc/glm.git
synced 2024-11-23 01:14:34 +00:00
Changed sign for eulerAngleY to make it consistent with the others
This commit is contained in:
parent
08c95429fe
commit
3eb1f70758
@ -35,9 +35,9 @@ namespace glm
|
||||
T sinY = glm::sin(angleY);
|
||||
|
||||
return detail::tmat4x4<T, defaultp>(
|
||||
cosY, T(0), sinY, T(0),
|
||||
cosY, T(0), -sinY, T(0),
|
||||
T(0), T(1), T(0), T(0),
|
||||
-sinY, T(0), cosY, T(0),
|
||||
sinY, T(0), cosY, T(0),
|
||||
T(0), T(0), T(0), T(1));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user