xxxxxxxxxx
/*
Ziqi Zhou
ART 3001
Feb,2,2017
group work
Vasarely's Painting
*/
size(1000,300);
background(255);
noStroke();
for(int i=25;i<1000;i=i+50){
for(int j = 25;j <1000; j = j +50){
rectMode(CENTER);
fill(random(250),random(150),random(250));
rect(i,j,50,50);
fill(#FFF3B4);
ellipse(i,j,random(20,50),random(20,50));
}
}