
PDE Download: ex.pde
JAVA Download: ex.java
Click on anar+ terms to get the documentation.
import anar.*;
void setup(){
size(600,300);
}
int count = 0;
void draw(){
if( (frameCount%10)==0)
background(255,0,0);
else
background(155);
count = count+1;
println(count);
}

|