pub type UintSize = Size2D<u32>;Expand description
A type representing the extent of an element in two-dimensions.
Aliased Type§
pub struct UintSize {
pub width: u32,
pub height: u32,
}Fields§
§width: u32The extent of the element in the U units along the x axis (usually horizontal).
height: u32The extent of the element in the U units along the y axis (usually vertical).