Vector2 Vector2Clamp(Vector2 v, Vector2 min, Vector2 max) => Vector2(v.x.clamp(min.x, max.x), v.y.clamp(min.y, max.y));