blob: 440fab0daef61bd43d4c580ac85b17a58888352f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <glm/mat4x4.hpp>
#include <glm/vec3.hpp>
struct Mutation {
using Matrix = glm::mat4;
Matrix getMatrix() const;
glm::vec3 position {};
glm::vec3 rotation {};
glm::vec3 scale {1};
};
|