Camera

There's a total of 1 notes tagged with "Camera".

Fri, Apr 29, 2016

Building a First-Person Shot Camera in C++

A first-person camera captures objects from the viewpoint of a player's character. Some aspects have to be considered, like the characteristics of the camera (orbiting with the mouse and translation with keyboard keys), as well as how we could capture all these characteristics with math and linear algebra. In this article, I analyze the math needed to design and implement a first-person shot camera in C++.