fast-nuclear-sim/src/graphics/camera.hpp

17 lines
231 B
C++
Raw Normal View History

2024-01-22 00:20:54 +11:00
#pragma once
#include <glm/matrix.hpp>
2024-01-22 23:53:10 +11:00
#include <glm/vec3.hpp>
2024-01-22 00:20:54 +11:00
namespace sim::graphics::camera
{
2024-01-22 23:53:10 +11:00
glm::mat4 get_model_matrix();
2024-01-22 00:20:54 +11:00
void rotate(double pitch, double yaw);
void move(double x, double y, double z);
void update();
};