Type Alias iced::widget::canvas::path::lyon_path::math::Size

pub type Size = Size2D<f32, UnknownUnit>;
Available on crate feature canvas only.
Expand description

Alias for euclid::default::Size2D<f32>.

Aliased Type§

struct Size {
    pub width: f32,
    pub height: f32,
    /* private fields */
}

Fields§

§width: f32

The extent of the element in the U units along the x axis (usually horizontal).

§height: f32

The extent of the element in the U units along the y axis (usually vertical).