Syntactic sugar to instantiate a coordinate in the LCD space.
(x: usize, y: usize)
| 34 | |
| 35 | /// Syntactic sugar to instantiate a coordinate in the LCD space. |
| 36 | pub(super) fn xy(x: usize, y: usize) -> LcdXY { |
| 37 | LcdXY { x, y } |
| 38 | } |
| 39 | |
| 40 | /// Syntactic sugar to instantiate a size in the LCD space. |
| 41 | pub(super) fn size(width: usize, height: usize) -> LcdSize { |
no outgoing calls
no test coverage detected