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