3#include "egg/math/Math.hh"
8void BoundBox2f::resetBound() {
9 min.set(std::numeric_limits<f32>::max());
10 max.set(-std::numeric_limits<f32>::max());
13void BoundBox2f::setDirect(
const Vector2f &vMin,
const Vector2f &vMax) {
18void BoundBox3f::resetBound() {
19 min.set(std::numeric_limits<f32>::max());
20 max.set(-std::numeric_limits<f32>::max());
23void BoundBox3f::setDirect(
const Vector3f &vMin,
const Vector3f &vMax) {