1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
matabstrix/src/transformation.hpp

17 lines
240 B
C++

#ifndef _TRANSFORMATION_HPP_
#define _TRANSFORMATION_HPP_
#include <glm/glm.hpp>
struct Transformation
{
glm::mat4 transformation() const;
glm::mat4 base;
glm::vec3 position;
glm::vec3 angles;
};
#endif // _TRANSFORMATION_HPP_