-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlCamera.cpp
53 lines (37 loc) · 1.42 KB
/
GlCamera.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include"GlCamera.h"
GlCamera::GlCamera(GLFWwindow* window) {
this->pWindowM = window;
}
glm::mat4 GlCamera::feedMatrix(const glm::mat4& source) const {
return this->ResultCache * source;
}
void GlCamera::newView(const glm::vec3& from, const glm::vec3& to, const glm::vec3& up) {
this->View = glm::lookAt(from, to, up);
this->ResultCache = this->Projection * this->View;
this->positionM = from;
}
void GlCamera::newPerspective(const float& fov, const size_t width, const size_t height, const float front, const float back) {
float aspectRatio = (float)((double)width / (double)height);
this->Projection = glm::perspective(fov, aspectRatio, front, back);
this->ResultCache = this->Projection * this->View;
}
void GlCamera::passData(const std::vector<GLint> data) {}
void GlCamera::rayToWorldspace(glm::vec4& start, glm::vec4& end) const {
glm::mat4x4 VPi = glm::inverse(this->ResultCache);
//invert the start point
glm::vec4 startWorld = VPi * start;
//normalize the the coordinates with w
startWorld = startWorld / startWorld.w;
//invert the end point
glm::vec4 endWorld = VPi * end;
//normalize the the coordinates with w
endWorld = endWorld / endWorld.w;
//copy the data into the result containers
start = startWorld;
end = endWorld;
}
glm::vec3 GlCamera::getPosition() const { return this->positionM; }
void GlCamera::shutdown() {
}
GlCamera::~GlCamera() {
}