Vector4 min(Vector4 v) { x = math.min(x, v.x); y = math.min(y, v.y); z = math.min(z, v.z); w = math.min(w, v.w); return this; }