Camera rotation - First Person Camera using GLM
- by tempvar
I've just switched from deprecated opengl functions to using shaders and GLM math library and i'm having a few problems setting up my camera rotations (first person camera). I'll show what i've got setup so far.
I'm setting up my ViewMatrix using the glm::lookAt function which takes an eye position, target and up vector
// arbitrary pos and…