We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0b2ef commit 6468c98Copy full SHA for 6468c98
Awesome Design Collection in Python/AD33.py
@@ -0,0 +1,27 @@
1
+#awesome Design 33
2
+
3
+import turtle as t
4
+import colorsys
5
+t.width(20)
6
+h = 0
7
+t.tracer(200)
8
+t.bgcolor("black")
9
+t.setup(1537,865)
10
11
12
13
+for i in range(2000):
14
+ c = colorsys.hsv_to_rgb(h,1,1)
15
+ h += 0.01
16
+ t.pencolor(c)
17
+ t.begin_fill()
18
+ t.fd(i)
19
+ t.rt(60)
20
21
+ t.circle(i,-120)
22
23
+ t.rt(180)
24
+ t.circle(-i,-60)
25
+ t.end_fill()
26
27
+t.done()
0 commit comments