xxxxxxxxxx
/*
Ziqi Zhou
ART 3001
2/7/2017
In class drawing
*/
void setup(){
size(500,500);
background(255);
frameRate(5);
}
void draw(){
for(int i=0;i<500;i=i+25){
for(int j=0;j<500;j=j+25){
stroke(random(0,27),random(50,100),random(100,200));
strokeWeight(random(1,5));
fill(random(120,160),random(150,200),random(200,250));
rect(i,j,25,25);
}
for(int j=-25;j<250;j=j+25){
stroke(random(70,100),random(10,50),random(90,120));
rect(i,j,25,25);
fill(random(200,255),random(170,210),random(200,150));
}
}
}