Type Alias carnelian::geometry::UintSize

source ·
pub type UintSize = Size2D<u32>;
Expand description

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

Aliased Type§

struct UintSize {
    pub width: u32,
    pub height: u32,
    /* private fields */
}

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).