Fix bug in view_lh.h #2

Reverse order of parameters in the second crossproduct
This commit is contained in:
Michał Gallus
2022-03-08 01:42:43 +01:00
committed by GitHub
parent 7d47b7f1fd
commit 7e211e1f49

View File

@@ -38,7 +38,7 @@ glm_lookat_lh(vec3 eye, vec3 center, vec3 up, mat4 dest) {
glm_vec3_normalize(f);
glm_vec3_crossn(up, f, s);
glm_vec3_cross(s, f, u);
glm_vec3_cross(f, s, u);
dest[0][0] = s[0];
dest[0][1] = u[0];