Copies the values of the passed vector3's x, y and z properties to this vector3.
Vector3 copy(Vector3 v) { x = v.x; y = v.y; z = v.z; return this; }