A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
BoundBox.cc
1#include "BoundBox.hh"
2
3#include "egg/math/Math.hh"
4
5namespace EGG {
6
8void BoundBox2f::resetBound() {
9 min.set(std::numeric_limits<f32>::max());
10 max.set(-std::numeric_limits<f32>::max());
11}
12
13void BoundBox2f::setDirect(const Vector2f &vMin, const Vector2f &vMax) {
14 max = vMax;
15 min = vMin;
16}
17
18void BoundBox3f::resetBound() {
19 min.set(std::numeric_limits<f32>::max());
20 max.set(-std::numeric_limits<f32>::max());
21}
22
23void BoundBox3f::setDirect(const Vector3f &vMin, const Vector3f &vMax) {
24 max = vMax;
25 min = vMin;
26}
27
28} // namespace EGG
EGG core library.
Definition Archive.cc:6