riddle_math
pub fn vec2<T>(x: T, y: T) -> Vector2<T>
Utility function to abbreviate Vector2 creation
Vector2
assert_eq!(vec2(1,2), Vector2::new(1,2));