Type Alias UintSize

Source
pub type UintSize = Size2D<u32>;
Expand description

A type representing the extent of an element in two-dimensions.

Aliased Type§

#[repr(C)]
pub struct UintSize { pub width: u32, pub height: u32, }

Fields§

§width: u32

The extent of the element in the U units along the x axis (usually horizontal).

§height: u32

The extent of the element in the U units along the y axis (usually vertical).