xxxxxxxxxx
/*-----------------------------
Vasarely Painting
2/2/2017
Marcos Ye
-----------------------------*/
void setup(){
size(1000,400);
for(int i = 0; i < 1000; i = i + 100){
for(int j = 0; j < 400; j = j + 100){
int s = 100;
noStroke();
fill(random(255),random(255),random(255));
rect(i,j, s,s);
fill(254,255,218);
ellipse(i+50,j+50,random(40,90),random(40,90));
}