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