Skip to main content

BoundingBox

Type Alias BoundingBox 

Source
pub type BoundingBox = Aabb<IVec3, Structure>;
Expand description

Integer axis-aligned bounding box for structure pieces.

Aliased Type§

pub struct BoundingBox {
    min: IVec3,
    max: IVec3,
    p: PhantomData<Structure>,
}

Fields§

§min: IVec3

Minimum corner of the box.

§max: IVec3

Maximum corner of the box.

§p: PhantomData<Structure>