Math v0.0.1
Aabb

Axis Aligned Bounding Box structure. (AABB) More...

#include <aabb.hpp>

Public Member Functions

 Aabb (f32x4 min=f32x4::zero, f32x4 max=f32x4::zero) noexcept
 Creates a new Axis Aligned Bounding Box in 3D space. (AABB)
 
f32x4 getMin () const noexcept
 Returns minimum AABB corner position in 3D space.
 
f32x4 getMax () const noexcept
 Returns maximum AABB corner position in 3D space.
 
void setMin (f32x4 min) noexcept
 Sets minimum AABB corner position in 3D space.
 
void setMax (f32x4 max) noexcept
 Sets maximum AABB corner position in 3D space.
 
void set (f32x4 min, f32x4 max) noexcept
 Sets minimum and maximum AABB corner position in 3D space.
 
bool trySet (f32x4 min, f32x4 max) noexcept
 Tries to set minimum and maximum AABB corner position in 3D space.
 
void setSize (f32x4 size) noexcept
 Sets size of the bounding box.
 
void setSize (f32x4 size, f32x4 position) noexcept
 Sets size and position of the bounding box in 3D space.
 
f32x4 getSize () const noexcept
 Returns size of the bounding box.
 
f32x4 getPosition () const noexcept
 Returns position of the bounding box in 3D space.
 
void setExtent (f32x4 extent) noexcept
 Sets extent and position of the bounding box in 3D space.
 
void setExtent (f32x4 extent, f32x4 position) noexcept
 Sets extent and position of the bounding box in 3D space.
 
f32x4 getExtent () const noexcept
 Returns extent of the bounding box. (half size)
 
void getExtent (f32x4 &extent, f32x4 &position) const noexcept
 Returns extent and position of the bounding box in 3D space.
 
void extend (f32x4 point) noexcept
 Extends bounding box min and max corner positions in 3D space.
 
void extend (const Aabb &aabb) noexcept
 Extends bounding box min and max corner positions in 3D space.
 
void translate (f32x4 translation) noexcept
 Translates bounding box in 3D space.
 
void scale (f32x4 scale) noexcept
 Scales bounding box in 3D space.
 
float calcArea () const noexcept
 Calculates area of the bounding box.
 
float calcVolume () const noexcept
 Calculates volume of the bounding box.
 
Aabb operator* (f32x4 v) const noexcept
 
Aabb operator/ (f32x4 v) const noexcept
 
Aabb operator+ (f32x4 v) const noexcept
 
Aabb operator- (f32x4 v) const noexcept
 
Aabboperator*= (f32x4 v) noexcept
 
Aabboperator/= (f32x4 v) noexcept
 
Aabboperator+= (f32x4 v) noexcept
 
Aabboperator-= (f32x4 v) noexcept
 
bool operator== (const Aabb &v) const noexcept
 
bool operator!= (const Aabb &v) const noexcept
 

Static Public Attributes

static const Aabb zero = Aabb(f32x4::zero, f32x4::zero)
 
static const Aabb one = Aabb(f32x4(-0.5f), f32x4(0.5f))
 
static const Aabb two = Aabb(f32x4::minusOne, f32x4::one)
 
static const Aabb half = Aabb(f32x4(-0.25f), f32x4(0.25f))
 

Protected Attributes

f32x4 min
 
f32x4 max
 

Detailed Description

Axis Aligned Bounding Box structure. (AABB)

A simple and efficient way to represent the boundaries of a 3D or 2D object for collision detection or spatial queries in game development and computer graphics. The sides of the bounding box are aligned with the coordinate axes (e.g., X, Y, and Z axes in 3D space). This means that the edges of the box do not rotate with the object but remain parallel to the axes. Bounding box defines a rectangular (2D) or cuboid (3D) volume that surrounds an object, used to approximate the object's shape for efficient calculations.

Constructor & Destructor Documentation

◆ Aabb()

Aabb ( f32x4 min = f32x4::zero,
f32x4 max = f32x4::zero )
inlinenoexcept

Creates a new Axis Aligned Bounding Box in 3D space. (AABB)

Parameters
minminimum bounding box corner position in 3D space
maxmaximum bounding box corner position in 3d space

Member Function Documentation

◆ getMin()

f32x4 getMin ( ) const
inlinenoexcept

Returns minimum AABB corner position in 3D space.

The point that has the smallest values for all axes.

◆ getMax()

f32x4 getMax ( ) const
inlinenoexcept

Returns maximum AABB corner position in 3D space.

The point that has the biggest values for all axes.

◆ setMin()

void setMin ( f32x4 min)
inlinenoexcept

Sets minimum AABB corner position in 3D space.

See the getMin().

Parameters
minminimum bounding box corner position in 3D space

◆ setMax()

void setMax ( f32x4 max)
inlinenoexcept

Sets maximum AABB corner position in 3D space.

See the setMax().

Parameters
maxmaximum bounding box corner position in 3D space

◆ set()

void set ( f32x4 min,
f32x4 max )
inlinenoexcept

Sets minimum and maximum AABB corner position in 3D space.

See the getMin() and getMax().

Parameters
minminimum bounding box corner position in 3D space
maxmaximum bounding box corner position in 3D space

◆ trySet()

bool trySet ( f32x4 min,
f32x4 max )
inlinenoexcept

Tries to set minimum and maximum AABB corner position in 3D space.

Returns
True if min and max values are valid, otherwise false.

See the getMin() and getMax().

Parameters
minminimum bounding box corner position in 3D space
maxmaximum bounding box corner position in 3D space

◆ setSize() [1/2]

void setSize ( f32x4 size)
inlinenoexcept

Sets size of the bounding box.

Parameters
sizetarget size of the bounding box

◆ setSize() [2/2]

void setSize ( f32x4 size,
f32x4 position )
inlinenoexcept

Sets size and position of the bounding box in 3D space.

Parameters
sizetarget size of the bounding box
positiontarget position of the bounding box in 3D space

◆ setExtent() [1/2]

void setExtent ( f32x4 extent)
inlinenoexcept

Sets extent and position of the bounding box in 3D space.

Parameters
extenttarget extent of the bounding box (half size)

◆ setExtent() [2/2]

void setExtent ( f32x4 extent,
f32x4 position )
inlinenoexcept

Sets extent and position of the bounding box in 3D space.

Parameters
extenttarget extent of the bounding box (half size)
positiontarget position of the bounding box in 3D space

◆ getExtent()

void getExtent ( f32x4 & extent,
f32x4 & position ) const
inlinenoexcept

Returns extent and position of the bounding box in 3D space.

Parameters
extenttarget extent of the bounding box (half size)
positiontarget position of the bounding box in 3D space

◆ extend() [1/2]

void extend ( f32x4 point)
inlinenoexcept

Extends bounding box min and max corner positions in 3D space.

Parameters
pointtarget point to include into the bounding box in 3D space

◆ extend() [2/2]

void extend ( const Aabb & aabb)
inlinenoexcept

Extends bounding box min and max corner positions in 3D space.

Parameters
[in]aabbtarget AABB to include into the bounding box

◆ translate()

void translate ( f32x4 translation)
inlinenoexcept

Translates bounding box in 3D space.

Parameters
translationtarget translation transformation in 3D space

◆ scale()

void scale ( f32x4 scale)
inlinenoexcept

Scales bounding box in 3D space.

Parameters
scaletarget scale transformation in 3D space