diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-05-18 08:52:06 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-05-18 08:52:06 -0400 |
commit | 456b9f4cef924a40485b4bc96f0f9c44c48662a3 (patch) | |
tree | 54be122a1ec0ac334f847e952411ce4cf180a02c /view.h | |
parent | fdc2d91285cd9548a3c95f1bdfb75c70ccfffff6 (diff) |
renderer refactoring; controls for lookat
Diffstat (limited to 'view.h')
-rw-r--r-- | view.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |