pub trait Intersection<Rhs> {
    fn intersects(&self, rhs: &Rhs) -> bool;
}
Expand description

Trait for determining whether two shapes intersect with one another.

Required methods

Whether this shape intersect with the other.

Implementors