Help with noise to animate

Using Processing 3 in Python mode, I’m unable to get my ellipse to animate.
</
Xoff = 0

def setup():
size(800,900)

def draw():
global Xoff

background(0)
x = map(noise(Xoff),0,1,0,width)

ellipse(x,200,50,50)

x += 0.1

following the 2nd part of the noise tutorial by the coding train

1 Like

Xoff += 0.1

2 Likes

:man_facepalming::man_facepalming::man_facepalming: my friend… Thank you so much… That sorted everything out.

1 Like