]> git.localhorst.tv Git - gong.git/blob - src/geometry/rotation.hpp
code, assets, and other stuff stolen from blank
[gong.git] / src / geometry / rotation.hpp
1 #ifndef GONG_GEOMETRY_ROTATION_HPP_
2 #define GONG_GEOMETRY_ROTATION_HPP_
3
4 #include "../graphics/glm.hpp"
5
6
7 namespace gong {
8
9 glm::mat3 find_rotation(const glm::vec3 &a, const glm::vec3 &b) noexcept;
10
11 }
12
13 #endif