look-at.md (1468B)
1 --- 2 title: "Understanding Camera Look-At." 3 date: 2022-10-10T00:31:00-04:00 4 draft: false 5 tags: ["Graphics", "Matrices", "OpenGL"] 6 math: true 7 --- 8 9 Often times, we want to position the camera in our scene at a particular point, 10 such as the head of the character in a first-person shooter or the cockpit of a 11 plane in a flight simulator. We also want the camera to look in the direction 12 that the player is trying to move. 13 14 To do this, we need to find the forward, right, and up vectors that correspond 15 to the desired view. 16 17 If we let $\vec{p}$ be the camera's position and $\vec{t}$ be the position of 18 what we want to look at, the camera's look direction is 19 $$\vec{l}=\vec{t}-\vec{p}\\,.$$ 20 Conventionally, the camera looks down the negative forward axis so 21 $$\vec{f}=-\vec{l}\\,.$$ 22 23 In order to determine the right vector, we need a reference up direction, 24 $\vec{up}$ (which isn't necessarily orthogonal to $\vec{f}$). This enables us 25 to calculate 26 $$\vec{r} = \vec{f} \times \vec{up}$$ 27 and 28 $$\vec{u} = \vec{r} \times \vec{f}\\,.$$ 29 30 Now we can use the camera position $\vec{p}$ and normalized forms of $\vec{f}$, 31 $\vec{r}$, and $\vec{u}$ to fill in our 32 [view matrix]({{< relref "view-matrix" >}}): 33 34 $$ 35 V 36 = 37 \begin{bmatrix} 38 r_{x} & r_{y} & r_{z} & -(\vec{r} \cdot \vec{p}) \\\ 39 u_{x} & u_{y} & u_{z} & -(\vec{u} \cdot \vec{p}) \\\ 40 f_{x} & f_{y} & f_{z} & -(\vec{f} \cdot \vec{p}) \\\ 41 0 & 0 & 0 & 1 42 \end{bmatrix} 43 $$ 44