Type Alias Size3D

Source
pub type Size3D<T> = Size3D<T, UnknownUnit>;

Aliased Type§

#[repr(C)]
pub struct Size3D<T> { pub width: T, pub height: T, pub depth: T, /* private fields */ }

Fields§

§width: T

The extent of the element in the U units along the x axis.

§height: T

The extent of the element in the U units along the y axis.

§depth: T

The extent of the element in the U units along the z axis.