aboutsummaryrefslogtreecommitdiffstats
path: root/view.h
diff options
context:
space:
mode:
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;