[][src]Macro embedded_graphics::icoord

macro_rules! icoord {
    ($x:expr, $y:expr) => { ... };
}

Create a Coord from a pair of integer values

Input values must be i32s

use embedded_graphics::{coord::Coord, icoord};

let c: Coord = icoord!(20, 30);