The camera position and orientation is described by a 4x4 matrix (mat4 of gl-matrix) as shown below. Three column vectors correspond to each base vector and the last column vector shows the origin of the camera.
We implement the camera rotation in the way that the camera rotates around the objects. This means that camera position as well as the orientation changes during the camera rotation. The camera position shall be rotated around a certain rotation center and XY axes of the camera coordinate. In order to do this, the camera position in the world coordinate is transformed by the camera local coordinate, rotate the camera position around the camera local axes, then the resulting camera position in the camera local coordinate is transfered back to the world coordinate.
In the ray tracer, the camera emits rays to draw graphics. Each ray corresponds to each pixel on the canvas. If you place the canvas close to the camera, the camera will zoom out. If you place the canvas far from the camera, the camera will zoom in.