diff options
Diffstat (limited to 'camera.h')
-rw-r--r-- | camera.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/camera.h b/camera.h deleted file mode 100644 index 3c1e40c..0000000 --- a/camera.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef CAMERA_INCLUDED_H
-#define CAMERA_INCLUDED_H
-
-#include <glm/glm.hpp>
-
-class Camera {
-public:
- Camera(glm::vec3 pos, float fov, float aspect, float zNear, float zFar);
-
- glm::mat4 GetViewProjection() const;
-
- void MoveForward(float amt);
- void MoveRight(float amt);
- void Pitch(float angle);
- void RotateY(float angle);
-
-private:
- glm::mat4 projection;
- glm::vec3 pos;
- glm::vec3 forward;
- glm::vec3 up;
-};
-
-#endif
|