fix: add CAM_H

This commit is contained in:
2025-08-29 22:30:18 +02:00
parent 42b0d16593
commit 715aa7a261

View File

@@ -1,3 +1,6 @@
#ifndef CAM_H
#define CAM_H
#include "math/mat4.h" #include "math/mat4.h"
#include "math/vec4.h" #include "math/vec4.h"
@@ -9,4 +12,6 @@ Mat4f_t lookAt(Vec4f_t* eye, Vec4f_t* center, Vec4f_t* up);
Mat4f_t rotateX(float angle); Mat4f_t rotateX(float angle);
Mat4f_t rotateY(float angle); Mat4f_t rotateY(float angle);
Mat4f_t rotateZ(float angle); Mat4f_t rotateZ(float angle);
#endif