diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-12-12 22:47:03 -0500 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-12-12 22:47:07 -0500 |
commit | 647069c4d9151b8eed87240cc3ed7b664e5b5ec5 (patch) | |
tree | 0fe12e7771418a7a06e7dac802839637a76856c8 /src/vec4ops/vec4ops.h | |
parent | 7382a6f7c01b71d08e6482707f34639820333f43 (diff) |
update camera logic
Diffstat (limited to 'src/vec4ops/vec4ops.h')
-rw-r--r-- | src/vec4ops/vec4ops.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vec4ops/vec4ops.h b/src/vec4ops/vec4ops.h index a21bcc9..796722a 100644 --- a/src/vec4ops/vec4ops.h +++ b/src/vec4ops/vec4ops.h @@ -31,11 +31,11 @@ public: static glm::vec4 dot4(glm::vec4 u, glm::vec4 v); - static glm::mat4 getViewMatrix4(glm::vec4 fromPoint, glm::vec4 toPoint, glm::vec4 upVector, glm::vec4 lookVector); - static glm::vec4 transformDir4(glm::vec4 dir4, glm::mat4 transformDirectionMatrix); static glm::vec4 inverseTransformDir4(glm::vec4 dir4, glm::mat4 inverseTransformDirectionMatrix); + + static glm::mat4 getViewMatrix4(glm::vec4 upVector, glm::vec4 lookVector, glm::vec4 overVector); }; #endif //PROJECTS_RAY_VEC4OPS_H |