Subtracts the given 3D vector from this 3D vector.
Vector3 sub(Vector3 v ) { x -= v.x; y -= v.y; z -= v.z; return this; }