Type Alias lyon_geom::Vector

source ·
pub type Vector<T> = Vector2D<T, UnknownUnit>;
Expand description

Alias for euclid::default::Vector2D.

Aliased Type§

struct Vector<T> {
    pub x: T,
    pub y: T,
    /* private fields */
}

Fields§

§x: T

The x (traditionally, horizontal) coordinate.

§y: T

The y (traditionally, vertical) coordinate.