Macro embedded_graphics::ucoord
source ยท macro_rules! ucoord { ($x:expr, $y:expr) => { ... }; }
Expand description
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);