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);
}
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);
}
Our goal is to make the OpenLab accessible for all users.
Our goal is to make the OpenLab accessible for all users.