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.

Associated Types

Required methods

Implementations on Foreign Types

Implementors