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

|