pub trait Bound {
    fn bound(&self) -> BoundingRect;

    fn overlaps<B: Bound>(&self, other: &B) -> bool { ... }
}
Expand description

Any object that has a bounding rect

Required methods

Provided methods

Implementors