Court is now in session

This commit is contained in:
2021-05-06 21:13:37 -07:00
parent f5522d64a7
commit 4a3b6c2f98
15 changed files with 150 additions and 24 deletions

View File

@ -5,6 +5,7 @@
#pragma once
#include <dawn/dawn.h>
#include "../util/math.h"
/**
* Make a camera look at a position in world space while itself being positioned
@ -42,7 +43,7 @@ void cameraLook(camera_t *camera,
* Make a camera's projection be a 3D Perspective view.
*
* @param camera The camera to project.
* @param fov The field of view of the camera.
* @param fov The field of view of the camera (in degrees).
* @param aspect The aspect ratio of the camera (w / h)
* @param near The near plane clip.
* @param far the far plane clip.