hw

void setup() {
size(500, 350);
frameRate(15);

}
int x=0;
void draw()
{
x=x+5;
if (x>550) {x=0;}
background(0);
ellipse(x,175,50,50);

}

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *