summaryrefslogtreecommitdiff
path: root/Year_2/IandM/circles/circles.pde
diff options
context:
space:
mode:
Diffstat (limited to 'Year_2/IandM/circles/circles.pde')
-rw-r--r--Year_2/IandM/circles/circles.pde14
1 files changed, 14 insertions, 0 deletions
diff --git a/Year_2/IandM/circles/circles.pde b/Year_2/IandM/circles/circles.pde
new file mode 100644
index 0000000..0bab8c2
--- /dev/null
+++ b/Year_2/IandM/circles/circles.pde
@@ -0,0 +1,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);
+}