summaryrefslogtreecommitdiff
path: root/src/core/camera.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-19 14:33:34 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-07-19 14:33:34 +1000
commit82515f9d90ac149984013f0d64c1cab37b349b29 (patch)
tree6da445874d055e3e66ab1825d4aa3bb784955fc9 /src/core/camera.h
parent5359c011a08ef2e06ed54104cc16c32868ca88ff (diff)
chore clang format + tidy
Diffstat (limited to 'src/core/camera.h')
-rw-r--r--src/core/camera.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/camera.h b/src/core/camera.h
index 9709677..7d2c7ed 100644
--- a/src/core/camera.h
+++ b/src/core/camera.h
@@ -22,12 +22,12 @@ Camera Camera_Create(Vec3 pos, Vec3 front, Vec3 up, f32 fov);
* @param out_view optionally stores just the view matrix
* @param out_proj optionally stores just the projection matrix
* @returns the camera's view projection matrix pre-multiplied
-*/
-PUB Mat4 Camera_ViewProj(Camera* c, f32 lens_height, f32 lens_width, Mat4* out_view, Mat4* out_proj);
+ */
+PUB Mat4 Camera_ViewProj(Camera* c, f32 lens_height, f32 lens_width, Mat4* out_view,
+ Mat4* out_proj);
/** @brief Get 2D camera transform matrix */
-PUB Mat4 Camera_View2D(Camera* c); // TODO: 2D cameras
-
+PUB Mat4 Camera_View2D(Camera* c); // TODO: 2D cameras
// TODO: (HIGH) Basic reusable camera controls
/*