Component-wise divide.
Vector2 Vector2Divide(Vector2 v1, Vector2 v2) => Vector2(v1.x / v2.x, v1.y / v2.y);