pub type Vector2f = Vector2<f32>;
export Vector2 as Vector2f
struct Vector2f { pub x: f32, pub y: f32, }
x: f32
X coordinate of the vector.
y: f32
Y coordinate of the vector.