Copies all values from the given ray to this ray.
Ray copy( Ray ray ) { origin.copy( ray.origin ); direction.copy( ray.direction ); return this; }