[][src]Macro meli::bottom_right

macro_rules! bottom_right {
    ($a:expr) => { ... };
}

Get the bottom right Position of an area

Example:

let new_area = ((0, 0), (1, 1));
assert_eq!(bottom_right!(new_area), (1, 1));