view www/oi/hello-web.pde @ 101:52e44ee1c791 tip master

enabled all scores in autostart script
author Rob Canning <rc@kiben.net>
date Tue, 21 Apr 2015 16:20:57 +0100
parents d802954248a7
children
line wrap: on
line source

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;
}