xxxxxxxxxx
void setup() { //setup function called initially, only once
size(256, 256);
}
void draw() { //draw function loops
for(int i = 0 ; i <= width ; i++)
{
for(int j = 0 ; j <= height ; j++)
{
color c = color(i^j*abs(sin(frameCount*PI/180))) ;
set(i,j,c) ;
}
}
}