aboutsummaryrefslogtreecommitdiff
path: root/source/Camera.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Camera.hpp')
-rw-r--r--source/Camera.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/Camera.hpp b/source/Camera.hpp
index 72c16f3..7bf0a6c 100644
--- a/source/Camera.hpp
+++ b/source/Camera.hpp
@@ -8,7 +8,16 @@ public:
std::string name;
glm::vec3 eye;
glm::vec3 target;
+
+ // --- Orthographic settings ---
float pixelsPerMeter;
+ // --- Orthographic settings ---
+
+ // ---- Perspective settings ---
+ /// In radians
+ float fov;
+ // ---- Perspective settings ---
+
bool perspective;
public: