nodescore/www/ponysays/hello-web.pde

17 lines
215 B
Plaintext
Raw Permalink Normal View History

void setup() {
size(1150,650);
background(255,0);
frameRate(30);
}
int x=0;
void draw(){
//background(255,0);
//fill(random(255));
//line(x,height, x,0);
//x = (x+1)%width;
}