Trait collision::HasAabb [] [src]

pub trait HasAabb {
    type Aabb: Aabb + Clone + Union<Self::Aabb, Output = Self::Aabb> + Debug;
    fn get_bound(&self) -> Self::Aabb;
}

Primitive with axis aligned bounding box

Associated Types

Bounding box type

Required Methods

Get the bounding box of the primitive in local space coordinates.

Implementors