template<typename T>
bpf::math::BoundingBox class

Template parameters
T the number type

Representation of a bounding box defined by an origin and a vector from the origin to one extremity

Public static functions

static auto FromMinMax(const Vector3<T>& min, const Vector3<T>& max) -> BoundingBox noexcept

Constructors, destructors, conversion operators

BoundingBox(const Vector3<T>& origin, const Vector3<T>& ext) noexcept
BoundingBox() noexcept

Public functions

auto GetMin() const -> Vector3<T> noexcept
auto GetMax() const -> Vector3<T> noexcept

Public variables

Vector3<T> Origin
Vector3<T> Extent

Function documentation

template<typename T>
static BoundingBox bpf::math::BoundingBox<T>::FromMinMax(const Vector3<T>& min, const Vector3<T>& max) noexcept

Parameters
min the minimum point
max the maximum point
Returns new BoundingBox

Computes a BoundingBox from a min and a max point

template<typename T>
bpf::math::BoundingBox<T>::BoundingBox(const Vector3<T>& origin, const Vector3<T>& ext) noexcept

Parameters
origin the origin
ext a vector to one extremity

Constructs a BoundingBox

template<typename T>
bpf::math::BoundingBox<T>::BoundingBox() noexcept

Constructs a BoundingBox centered at the origin

template<typename T>
Vector3<T> bpf::math::BoundingBox<T>::GetMin() const noexcept

Returns Origin - Extent

Calculates a minimum point

template<typename T>
Vector3<T> bpf::math::BoundingBox<T>::GetMax() const noexcept

Returns Origin + Extent

Calculates a maximum point

Variable documentation

template<typename T>
Vector3<T> bpf::math::BoundingBox<T>::Origin

Origin position

template<typename T>
Vector3<T> bpf::math::BoundingBox<T>::Extent

Extremity vector