aboutsummaryrefslogtreecommitdiffstats
path: root/view.h
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-05-18 08:52:06 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-05-18 08:52:06 -0400
commit456b9f4cef924a40485b4bc96f0f9c44c48662a3 (patch)
tree54be122a1ec0ac334f847e952411ce4cf180a02c /view.h
parentfdc2d91285cd9548a3c95f1bdfb75c70ccfffff6 (diff)
renderer refactoring; controls for lookat
Diffstat (limited to 'view.h')
-rw-r--r--view.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.h b/view.h
index 0f97358..08c5641 100644
--- a/view.h
+++ b/view.h
@@ -8,11 +8,11 @@
struct View
{
- static constexpr auto lookat = point3(0, 0, -1); // Point camera is looking at
static constexpr auto vup = vec3(0, 1, 0); // Camera-relative "up" direction
float fieldOfView = 90.f;
point3 camera {0, 0.5, 0.5};
+ point3 lookat {0, 0, -1}; // Point camera is looking at
float focalLength;
float viewportHeight;