-
Notifications
You must be signed in to change notification settings - Fork 38
/
discordLogo.py
81 lines (68 loc) · 1.05 KB
/
discordLogo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
from turtle import *
hideturtle()
speed(5)
width(1)
shape("circle")
bgcolor("black")
shapesize(2.7, 2.3, 5)
forward(226)
left(90)
def main_circle():
color("#7289DA")
begin_fill()
circle(227, 360)
end_fill()
def main_body():
color("white")
begin_fill()
penup()
goto(54, -80)
pendown()
right(150)
forward(32)
left(80)
circle(350, 14)
left(50)
circle(249, 41)
left(30)
circle(225, 17)
left(80)
forward(18)
right(85)
circle(150, 26)
right(80)
forward(20)
left(80)
circle(225, 17)
left(25)
circle(249, 40)
left(50)
circle(310, 16)
left(79)
forward(32)
left(100)
forward(15)
right(10)
forward(15)
right(120)
forward(10)
right(60)
circle(150, 60)
right(90)
forward(7)
right(90)
forward(15)
goto(54, -80)
end_fill()
def eyes():
color("#7289DA")
penup()
goto(48, -10)
setheading(0)
stamp()
backward(97)
stamp()
main_circle()
main_body()
eyes()
done()