4#include "mygl_export.h"
7#include <glm/gtc/matrix_transform.hpp>
35 MYGL_EXPORT
Camera(
int x,
int y) noexcept;
55 MYGL_EXPORT
void setSpeed(
float speed) noexcept;
103 MYGL_EXPORT
void moveUp(
float frametime) noexcept;
108 MYGL_EXPORT
void moveDown(
float frametime) noexcept;
113 MYGL_EXPORT
void moveLeft(
float frametime) noexcept;
Class used to manipulate a 2D camera.
MYGL_EXPORT void moveUp(float frametime) noexcept
Moves the camera upwards.
MYGL_EXPORT float getSpeed() const noexcept
Get the camera's speed.
MYGL_EXPORT Camera() noexcept
Default constructor, creates a camera pointing to the center of the window.
MYGL_EXPORT void moveRight(float frametime) noexcept
Moves the camera to the right.
MYGL_EXPORT glm::vec2 getPosition() const noexcept
Get the camera's current position.
MYGL_EXPORT void setPosition(int x, int y) noexcept
Sets the camera's position.
MYGL_EXPORT void moveDown(float frametime) noexcept
Moves the camera downwards.
MYGL_EXPORT void setSpeed(float speed) noexcept
Sets the camera's speed, in pixels per second.
MYGL_EXPORT void moveLeft(float frametime) noexcept
Moves the camera to the left.
MYGL_EXPORT glm::mat4 lookAt() const
Returns the camera's "look_at" matrix, it is used internally by a Window to set its view when drawing...
Namespace containing every class, function and enum of the library.