pub type Vec2f = Vector2<f32>;
2D single-precision float vector.
#[repr(C)]pub struct Vec2f { pub x: f32, pub y: f32, }
x: f32
X component.
y: f32
Y component.