Skip to main content

BlockLocalAabb

Type Alias BlockLocalAabb 

Source
pub type BlockLocalAabb = Aabb<DVec3, BlockLocal>;
Expand description

Block-local axis-aligned box used by voxel shapes.

Aliased Type§

pub struct BlockLocalAabb {
    min: DVec3,
    max: DVec3,
    p: PhantomData<BlockLocal>,
}

Fields§

§min: DVec3

Minimum corner of the box.

§max: DVec3

Maximum corner of the box.

§p: PhantomData<BlockLocal>