[][src]Trait imageproc::definitions::Position

pub trait Position {
    fn x(&self) -> u32;
fn y(&self) -> u32; }

Something with a 2d position.

Required methods

fn x(&self) -> u32

x-coordinate.

fn y(&self) -> u32

y-coordinate.

Loading content...

Implementors

impl Position for Corner[src]

fn x(&self) -> u32[src]

x-coordinate of the corner.

fn y(&self) -> u32[src]

y-coordinate of the corner.

Loading content...