pub type Point = Vector;
Alias for vectors, used to better state intent in certain places.
pub struct Point { pub x: f32, pub y: f32, }
x: f32
y: f32