xxxxxxxxxx
int lineCount = 50;
float [] lineX = new float [lineCount];
float [] lineY = new float [lineCount];
void setup () {
size (500, 700);
for (int i = 0; i < lineCount; i = i +1) {
lineX[i] = random(width);
lineY[i] = random(height);
}
}
void draw () {
background (255);
for (int i = 0; i < lineCount; i = i +1) {
line (lineX[i], lineY[i], 200, 200);
stroke(255);
strokeWeight(3);
stroke (0);
}
stroke (255);
strokeWeight(20);
noFill();
ellipse (202, 205, 150, 150);
stroke (255);
strokeWeight(5);
noFill();
ellipse (202, 205, 50, 50);
stroke (255);
strokeWeight(3);
noFill();
ellipse (202, 205, 80, 80);
}