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