Processing Forum
int x;
int y;
void setup() {
size(500,500);
x = width/2;
y = height/2; }
void draw() {
background(200,100,100);
fill(100,200,100);
ellipse(x, y, 100, 100);
y++;
if(y>height)
y=0;
}
Thanks for any help you can give me.