Hermes
Loading...
Searching...
No Matches
frustum.h
1#ifndef HERMES_GEOMETRY_FRUSTUM_H
2#define HERMES_GEOMETRY_FRUSTUM_H
3
4#include <hermes/geometry/plane.h>
8
9namespace hermes {
10
11class Frustum {
12public:
13 Frustum() = default;
14
15 // http://gamedevs.org/uploads/fast-extraction-viewing-frustum-planes-from-world-view-projection-matrix.pdf
16 // it t is the projection matrix, then frustum is in view space
17 // it t is the M * V * P matrix, then frustum is in model space
18 void set(Transform t) {
19 left.normal.x = t.matrix()[3][0] + t.matrix()[0][0];
20 left.normal.y = t.matrix()[3][1] + t.matrix()[0][1];
21 left.normal.z = t.matrix()[3][2] + t.matrix()[0][2];
22 left.offset = t.matrix()[3][3] + t.matrix()[0][3];
23
24 right.normal.x = t.matrix()[3][0] - t.matrix()[0][0];
25 right.normal.y = t.matrix()[3][1] - t.matrix()[0][1];
26 right.normal.z = t.matrix()[3][2] - t.matrix()[0][2];
27 right.offset = t.matrix()[3][3] - t.matrix()[0][3];
28
29 bottom.normal.x = t.matrix()[3][0] + t.matrix()[1][0];
30 bottom.normal.y = t.matrix()[3][1] + t.matrix()[1][1];
31 bottom.normal.z = t.matrix()[3][2] + t.matrix()[1][2];
32 bottom.offset = t.matrix()[3][3] + t.matrix()[1][3];
33
34 top.normal.x = t.matrix()[3][0] - t.matrix()[1][0];
35 top.normal.y = t.matrix()[3][1] - t.matrix()[1][1];
36 top.normal.z = t.matrix()[3][2] - t.matrix()[1][2];
37 top.offset = t.matrix()[3][3] - t.matrix()[1][3];
38
39 near_.normal.x = t.matrix()[3][0] + t.matrix()[2][0];
40 near_.normal.y = t.matrix()[3][1] + t.matrix()[2][1];
41 near_.normal.z = t.matrix()[3][2] + t.matrix()[2][2];
42 near_.offset = t.matrix()[3][3] + t.matrix()[2][3];
43
44 far_.normal.x = t.matrix()[3][0] - t.matrix()[2][0];
45 far_.normal.y = t.matrix()[3][1] - t.matrix()[2][1];
46 far_.normal.z = t.matrix()[3][2] - t.matrix()[2][2];
47 far_.offset = t.matrix()[3][3] - t.matrix()[2][3];
48 }
49 [[nodiscard]] bool isInside(const hermes::point3 &p) const {
50 return !near_.onNormalSide(p) && !far_.onNormalSide(p) &&
51 !left.onNormalSide(p) && !right.onNormalSide(p) &&
52 !bottom.onNormalSide(p) && !top.onNormalSide(p);
53 }
54
55 Plane near_;
56 Plane far_;
57 Plane left;
58 Plane right;
59 Plane bottom;
60 Plane top;
61};
62
63} // namespace hermes
64
65#endif
Definition frustum.h:11
T x
0-th normal component
Definition normal.h:172
T y
1-th normal component
Definition normal.h:173
T z
2-th normal component
Definition normal.h:174
Definition plane.h:39
Represents a 3-dimensional transformation.
Definition transform.h:237
HERMES_DEVICE_CALLABLE const mat4 & matrix() const
Gets transformation matrix.
Definition transform.h:542
Geometric point classes.
Holds 2-dimensional integer index coordinates.
Definition index.h:50
Geometric transform classes.
Geometric vector classes.