cleanup and bug fix

This commit is contained in:
k 2025-05-27 13:18:33 -04:00
parent 8350b85aa1
commit 6e69a543f0
4 changed files with 10 additions and 7 deletions

View file

@ -10,6 +10,7 @@ public:
void setRotate(float yaw, float pitch);
glm::mat4 getView();
glm::mat4 getProjection();
float aspect;
private:
void update();
@ -20,6 +21,5 @@ private:
float yaw;
float pitch;
float fov;
float aspect;
};
#endif