Normalize a Vector inplace.
Vec2 v = [5, 0]; v.normalize(); assert(v == Vec2(1, 0));
See Implementation
Normalize a Vector inplace.