orthographic projection for fov=0, rework of order and defaults for 3d camera api

This commit is contained in:
veclavtalica
2025-01-27 02:42:36 +03:00
parent 20394eed6c
commit 791ab628ca
5 changed files with 63 additions and 22 deletions

View File

@ -16,7 +16,7 @@ typedef struct Camera {
} Camera;
Matrix4 camera_look_at(const Camera *camera);
Matrix4 camera_perspective(const Camera *const camera);
Matrix4 camera_orthographic(const Camera *const camera);
#endif