Since the noise function always returns the same value for the same argument, you can change the area of the noise when you offset the argument:
sphere.YPosition = noise( time + 2 );
Now the curve from the first example is shifted to the left - the function returns a different area of the noisy curve.
|