blob: 016aee7591bf44c20479acf25dd721ab86c7eac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "config/types.h"
#include <glm/mat4x4.hpp>
class Location {
public:
#ifndef __cpp_aggregate_paren_init
explicit Location(GlobalPosition3D pos = {}, Rotation3D rot = {}) : pos {pos}, rot {rot} { }
#endif
[[nodiscard]] glm::mat3 getRotationTransform() const;
GlobalPosition3D pos;
Rotation3D rot;
};
|