]> git.localhorst.tv Git - blank.git/blob - src/geometry/rotation.hpp
ac208dc4c725b087a902e1a470e45c74d8c3e6dd
[blank.git] / src / geometry / rotation.hpp
1 #ifndef BLANK_GEOMETRY_ROTATION_HPP_
2 #define BLANK_GEOMETRY_ROTATION_HPP_
3
4 #include <glm/glm.hpp>
5
6
7 namespace blank {
8
9 glm::mat3 find_rotation(const glm::vec3 &a, const glm::vec3 &b) noexcept;
10
11 }
12
13 #endif