Skip to content
Snippets Groups Projects
Commit 3b3d9f93 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Added MoveTo

parent 9dd412e1
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,13 @@ public:
UpdateViewMatrix();
}
void MoveTo(glm::vec2 pos_new) {
glm::vec3 translation{ pos_new.x - m_lookAt.x, pos_new.y - m_lookAt.y, 0.f };
m_eye += translation;
m_lookAt += translation;
UpdateViewMatrix();
}
private:
glm::mat4 m_viewMatrix;
glm::vec3 m_eye;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment