pub type Vector<T> = Vector2D<T, UnknownUnit>;Expand description
Alias for euclid::default::Vector2D.
Aliased Type§
#[repr(C)]pub struct Vector<T> {
pub x: T,
pub y: T,
}Fields§
§x: TThe x (traditionally, horizontal) coordinate.
y: TThe y (traditionally, vertical) coordinate.