blob: 9fd533f11d0492c01072067d64a3833860d457be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* @file glm.hpp
* @brief Includes needed GLM files.
*/
#ifndef GLM_HPP_
#define GLM_HPP_
#define GLM_FORCE_RADIANS
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <glm/gtc/noise.hpp>
#endif // GLM_HPP_
|