Vector3 Vector3Min(Vector3 v1, Vector3 v2) => Vector3(math.min(v1.x, v2.x), math.min(v1.y, v2.y), math.min(v1.z, v2.z));