-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsasuke-mangekyou-sharingan.py
89 lines (80 loc) · 1.24 KB
/
sasuke-mangekyou-sharingan.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
82
83
84
85
86
87
88
89
import turtle as t
#eye circle
t.title("Sasuke Mangekyou Sharingan")
t.bgcolor('#bf0404')
t.pensize(10)
t.speed(5)
t.color('black')
t.pu()
t.goto(0,200)
t.pd()
t.fillcolor('black')
t.begin_fill()
t.circle(-200)
t.end_fill()
# internal red eyes
t.color('black')
t.pu()
t.goto(0,190)
t.pd()
t.seth(-60)
t.fillcolor('red')
t.begin_fill()
t.circle(-380,60)
t.rt(120)
t.circle(-380,60)
t.end_fill()
t.pu()
t.goto(-164.5,95)
t.pu
t.seth(0)
t.fillcolor('red')
t.begin_fill()
t.circle(-380,60)
t.rt(120)
t.circle(-380,60)
t.end_fill()
t.color('black')
t.pu()
t.goto(170.5,100)
t.pu
t.seth(-118)
t.fillcolor('red')
t.begin_fill()
t.circle(-380,60)
t.rt(120)
t.circle(-380,60)
t.end_fill()
# internal Red eyes black borders
t.color('black')
t.pu()
t.goto(0,190)
t.pd()
t.seth(-60)
t.circle(-380,60)
t.rt(120)
t.circle(-380,60)
t.color('black')
t.goto(-164.5,95)
t.seth(0)
t.circle(-380,60)
t.rt(120)
t.circle(-380,60)
t.end_fill()
t.penup()
t.goto(170.5,100)
t.seth(-118)
t.pendown()
t.circle(-380,60)
t.rt(120)
t.circle(-380,60)
t.end_fill()
t.penup()
#last internal eye circle
t.goto(5.0,-14.0)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(13)
t.end_fill()
t.done()