[][src]Trait imageproc::rect::Region

pub trait Region<T> {
    fn contains(&self, x: T, y: T) -> bool;
}

A geometrical representation of a set of 2D points with coordinate type T.

Required methods

fn contains(&self, x: T, y: T) -> bool

Whether this region contains the given point.

Loading content...

Implementors

impl Region<f32> for Rect[src]

impl Region<i32> for Rect[src]

Loading content...