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