Type Alias Size3D
pub type Size3D<T> = Size3D<T, UnknownUnit>;Available on crate feature
canvas only.Aliased Type§
pub struct Size3D<T> {
pub width: T,
pub height: T,
pub depth: T,
}Fields§
§width: TThe extent of the element in the U units along the x axis.
height: TThe extent of the element in the U units along the y axis.
depth: TThe extent of the element in the U units along the z axis.