[EDIT] comments on each function

This commit is contained in:
Menno
2021-05-21 15:09:07 +02:00
parent e10aea5a15
commit bb4fcbc97b
9 changed files with 160 additions and 19 deletions

View File

@@ -12,6 +12,7 @@ namespace entities
class Camera
{
private:
// The movement speed of the camera
const float SPEED = 0.52f;
glm::vec3 position;
@@ -20,6 +21,11 @@ namespace entities
public:
Camera(const ::glm::vec3& position, const ::glm::vec3& rotation);
/*
* @brief: This funtion moves the camera's position from the inputs of the keyboard
*
* @param window: The OpenGL window
*/
void Move(GLFWwindow* window);
inline glm::vec3 GetPosition() const{ return position; }