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