summaryrefslogtreecommitdiff
path: root/Year_2/IandM/circles/circles.pde
blob: 0bab8c27aa869eacaff5eec0b0a126f38b9b1b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
size(500, 500);

background(255);

line(0, height/2, width, height/2);

fill(0, 0, 0, 1);
ellipseMode(CORNER);


for (int c = 50; c < width-50; c+=50) {
  ellipse(50, height/2-(c/2), c, c);
}