29 uint64_t GetRenderOutput();
32 void OffsetRotation(
float pitch,
float yaw);
33 void OffsetPosition(
float x,
float y,
float z);
34 void ResizeViewport(uint32_t width, uint32_t height);
35 void UpdateProjectionMatrix();
36 void UpdateViewMatrix();
37 glm::mat4& GetProjectionMatrix();
38 glm::mat4& GetViewMatrix();
41 glm::vec3 GetForward()
const;
42 glm::vec3 GetRight()
const;
43 glm::vec3 GetUp()
const;
57 glm::vec3 position = glm::vec3();
58 glm::vec3 eulerAngles = glm::vec3();
59 glm::quat rotation = glm::quat();
61 uint32_t height = 600;
62 float fieldOfView = glm::radians(80.0f);
63 float nearPlaneDistance = 0.1f;
64 float farPlaneDistance = 150.f;