17 lines
215 B
Plaintext
17 lines
215 B
Plaintext
|
|
||
|
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;
|
||
|
}
|