Kinoko
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
5
namespace
EGG
{
6
8
struct
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
30
struct
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
EGG core library.
Definition
Archive.cc:6
EGG::BoundBox2f
A representation of a bounding rectangle.
Definition
BoundBox.hh:8
EGG::BoundBox3f
A representation of a bounding cuboid.
Definition
BoundBox.hh:30
EGG::Vector2f
A 2D float vector.
Definition
Vector.hh:12
EGG::Vector3f
A 3D float vector.
Definition
Vector.hh:83
egg
math
BoundBox.hh
Made by
Malleo
. Logo by
vabold
. Website generated by
Doxygen
1.12.0