blob: 8570fc270b8b0ba656ed26c607d25da4f53c0291 (
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::mat4 getRotationTransform() const;
GlobalPosition3D pos;
Rotation3D rot;
};
|