blob: 789830b5ac4c520c1e3db82d21b072ab9e3ee2d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#pragma once
#include "config/types.h"
class LightDirection {
public:
// NOLINTNEXTLINE(hicpp-explicit-conversions) deliberately a helper
LightDirection(Direction2D sunPos);
[[nodiscard]] Direction2D
position() const noexcept
{
return pos;
}
[[nodiscard]] Direction3D
vector() const noexcept
{
return vec;
}
[[nodiscard]] float
ambient() const noexcept
{
return amb;
}
[[nodiscard]] float
directional() const noexcept
{
return dir;
}
private:
Direction2D pos;
Direction3D vec;
float amb;
float dir;
};
|