Trait mgf::Contains[][src]

pub trait Contains<RHS> {
    fn contains(&self, rhs: &RHS) -> bool;
}

A type that can completely subsume another.

Contains is another common form of discrete collision detection. Most often used internally to determine if an object contains a point.

Required Methods

Returns true if the current object contains the argument.

Implementors