[][src]Macro embedded_graphics::ucoord

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

Create an UnsignedCoord from a pair of integer values

Input values must be u32s

use embedded_graphics::{unsignedcoord::UnsignedCoord, ucoord};

let c: UnsignedCoord = ucoord!(20, 30);