A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
BoundBox.hh
1#pragma once
2
3#include "egg/math/Vector.hh"
4
5namespace EGG {
6
8struct BoundBox2f {
10 BoundBox2f() = default;
11 ~BoundBox2f() = default;
12
13 void resetBound();
14
15 void setDirect(const Vector2f &vMax, const Vector2f &vMin);
16
17 void setMin(const Vector2f &v) {
18 min = v;
19 }
20
21 void setMax(const Vector2f &v) {
22 max = v;
23 }
24
25 Vector2f min;
26 Vector2f max;
27};
28
30struct BoundBox3f {
31 BoundBox3f() = default;
32 ~BoundBox3f() = default;
33
34 void resetBound();
35
36 void setZero() {
37 min.setZero();
38 max.setZero();
39 }
40
41 void setDirect(const Vector3f &vMin, const Vector3f &vMax);
42
43 void setMin(const Vector3f &v) {
44 min = v;
45 }
46
47 void setMax(const Vector3f &v) {
48 max = v;
49 }
50
51 Vector3f min;
52 Vector3f max;
53};
54
55} // namespace EGG
EGG core library.
Definition Archive.cc:6
A representation of a bounding rectangle.
Definition BoundBox.hh:8
A representation of a bounding cuboid.
Definition BoundBox.hh:30
A 2D float vector.
Definition Vector.hh:12
A 3D float vector.
Definition Vector.hh:83