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