xxxxxxxxxx
/*-----------------------------
ColorMode and Other Lab
2/7/2017
MARCOS YE
-----------------------------*/
void setup(){
size (500, 500);
background (0);
frameRate (60);
noFill();
colorMode (HSB);
}
void draw(){
strokeWeight(random(1,20));
stroke(mouseX,100,255);
float s = random(50,100);
for(int i = 0; i < 500; i = i + 100){
for(int j = 0; j < 500; j = j + 100)
{
ellipse(i+50,j+50, s, s);
}
}
}