]> git.localhorst.tv Git - gong.git/blob - rotation.hpp
9baff3d5672ad783808492d954f33ab3b4a3712c
[gong.git] / 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