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; }