initial commit

This commit is contained in:
Bruno C. 2026-01-17 23:44:01 -03:00
commit 5e83dec47d
7 changed files with 5731 additions and 0 deletions

7
camera.h Normal file
View file

@ -0,0 +1,7 @@
#pragma once
struct cw_perspective_camera {
float fov;
float z_near;
float z_far;
};