-
Notifications
You must be signed in to change notification settings - Fork 0
/
modernArt.py
130 lines (109 loc) · 2.17 KB
/
modernArt.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
from turtle import *
from random import *
colormode(255)
def randomcolour():
red = randint(0, 255)
green = randint(0, 255)
blue = randint(0, 255)
color(red, green, blue )
def randomplace():
penup()
x = randint(-100,100)
y = randint(-100,100)
goto(x,y)
pendown()
def randomheading():
heading = randint(0, 360)
setheading(heading)
shape("turtle")
speed(0)
for i in range(4):
randomcolour()
randomplace()
randomheading()
stamp()
def drawrectangle():
randomcolour()
randomplace()
hideturtle()
length = randint(10, 100)
height = randint(10, 100)
begin_fill()
forward(length)
right(90)
forward(height)
right(90)
forward(length)
right(90)
forward(height)
right(90)
end_fill()
clear()
setheading(0)
for i in range(20):
drawrectangle()
from turtle import *
from random import *
def randomcolour():
red = randint(0, 255)
green = randint(0, 255)
blue = randint(0, 255)
color(red, green, blue )
def randomplace():
penup()
x = randint(-100,100)
y = randint(-100,100)
goto(x,y)
pendown()
def randomheading():
heading = randint(0, 360)
setheading(heading)
shape("turtle")
speed(0)
for i in range(4):
randomcolour()
randomplace()
randomheading()
stamp()
def drawrectangle():
randomcolour()
randomplace()
hideturtle()
length = randint(10, 100)
height = randint(10, 100)
begin_fill()
forward(length)
right(90)
forward(height)
right(90)
forward(length)
right(90)
forward(height)
right(90)
end_fill()
def drawcircle():
radius = randint(5, 100)
randomcolour()
randomplace()
dot(radius)
def drawstar():
randomcolour()
randomplace()
randomheading()
begin_fill()
size = randint(20, 100)
#draw the star shape
for side in range(5):
left(144)
forward(size)
end_fill()
clear()
setheading(0)
for i in range(20):
drawrectangle()
clear()
for i in range(20):
drawcircle()
clear()
for i in range(20):
drawstar()