diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-12-11 14:24:34 +0000 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2022-12-12 09:18:14 +0000 |
commit | 56ae990fb97413fd5095f73fef01daffc7316c8b (patch) | |
tree | 633be7ae0d079546d2bd9c4ef6b15da3a0fc72e6 | |
parent | Make Camera members private with accessors and helpful setters (diff) | |
download | ilt-56ae990fb97413fd5095f73fef01daffc7316c8b.tar.bz2 ilt-56ae990fb97413fd5095f73fef01daffc7316c8b.tar.xz ilt-56ae990fb97413fd5095f73fef01daffc7316c8b.zip |
Have Camera remember all its properties
-rw-r--r-- | gfx/gl/camera.cpp | 3 | ||||
-rw-r--r-- | gfx/gl/camera.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gfx/gl/camera.cpp b/gfx/gl/camera.cpp index 0e81282..1c46200 100644 --- a/gfx/gl/camera.cpp +++ b/gfx/gl/camera.cpp @@ -4,7 +4,8 @@ #include <ray.hpp> Camera::Camera(glm::vec3 pos, float fov, float aspect, float zNear, float zFar) : - position {pos}, forward {::north}, up {::up}, projection {glm::perspective(fov, aspect, zNear, zFar)} + position {pos}, forward {::north}, up {::up}, fov {fov}, aspect {aspect}, near {zNear}, far {zFar}, + projection {glm::perspective(fov, aspect, zNear, zFar)} { } diff --git a/gfx/gl/camera.h b/gfx/gl/camera.h index d82802f..5b9d339 100644 --- a/gfx/gl/camera.h +++ b/gfx/gl/camera.h @@ -49,5 +49,6 @@ private: glm::vec3 forward;
glm::vec3 up;
+ float fov, aspect, near, far;
glm::mat4 projection;
};
|