pub trait Intersects<T> {
    fn intersects(&self, shape: T) -> bool;
}

Required Methods

returns true if shape intersects this shape

Implementors