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

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

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

Aliased Type§

struct Vector {
    pub x: f32,
    pub y: f32,
    /* private fields */
}

Fields§

§x: f32

The x (traditionally, horizontal) coordinate.

§y: f32

The y (traditionally, vertical) coordinate.