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