[ Maverik Level 1 typedefs ]
MAV_BB
Summary
Axis-aligned bounding box.
Syntax
typedef struct {
MAV_vector min;
MAV_vector max;
} MAV_BB;
Description
The axis aligned bounding box, MAV_BB, comprises two 3D
positions, min and max, to define its extent. It is up to the
user to ensure that max is greater than min.
Back to the index page.