You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On https://github.com/felselva/mathc/blob/master/mathc.c#L5169mat4 result is defined which is passed to mat4_rotation_x. Inside mat4_rotation_x only values at index 5,6,9, and 10 are updated.
Also as per the example, in README, identity matrix was generated before passing it to mat4_rotation_x.
So shouldn't smat_rotation_* methods also set identity matrix before calling mat4_rotation_x?
On https://github.com/felselva/mathc/blob/master/mathc.c#L5169
mat4 result
is defined which is passed tomat4_rotation_x
. Inside mat4_rotation_x only values at index 5,6,9, and 10 are updated.Also as per the example, in README, identity matrix was generated before passing it to mat4_rotation_x.
So shouldn't smat_rotation_* methods also set identity matrix before calling mat4_rotation_x?
E.g.
The text was updated successfully, but these errors were encountered: