pub trait Aabb {
    type Num: Num;

    fn get(&self) -> &Rect<Self::Num>;
}
Expand description

Trait to signify that this object has an axis aligned bounding box.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors