blob: d82802fa978abbcad2b2d27095efb31a884255b4 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#pragma once
#include <glm/glm.hpp>
#include <maths.h>
#include <ray.hpp>
class Camera {
public:
Camera(glm::vec3 pos, float fov, float aspect, float zNear, float zFar);
[[nodiscard]] glm::mat4 getViewProjection() const;
[[nodiscard]] Ray unProject(const glm::vec2 &) const;
void
setPosition(const glm::vec3 & p)
{
position = p;
}
void
setForward(const glm::vec3 & f)
{
forward = f;
}
void
setView(const glm::vec3 & p, const glm::vec3 & f, const glm::vec3 & u = ::up)
{
position = p;
forward = f;
up = u;
}
void
lookAt(const glm::vec3 & target)
{
setForward(glm::normalize(target - position));
}
[[nodiscard]] auto
getForward() const
{
return forward;
}
[[nodiscard]] auto
getPosition() const
{
return position;
}
private:
glm::vec3 position;
glm::vec3 forward;
glm::vec3 up;
glm::mat4 projection;
};
|