-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode 5
52 lines (41 loc) · 1 KB
/
code 5
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
background(135, 206, 250);
fill(255, 223, 0);
ellipse(350, 50, 80, 80);
fill(0, 105, 148);
rect(0, 200, 400, 200);
fill(240, 230, 140);
rect(0, 300, 400, 100);
fill(255, 255, 255);
ellipse(70, 80, 100, 60);
ellipse(100, 80, 100, 60);
ellipse(85, 60, 100, 60);
ellipse(300, 100, 100, 60);
ellipse(330, 100, 100, 60);
ellipse(315, 80, 100, 60);
fill(139, 69, 19);
rect(50, 180, 20, 120);
fill(34, 139, 34);
ellipse(60, 150, 100, 30);
ellipse(100, 170, 100, 30);
ellipse(20, 170, 100, 30);
ellipse(60, 200, 100, 30);
fill(139, 69, 19);
rect(200, 250, 10, 70);
fill(255, 0, 0);
triangle(170, 250, 240, 250, 205, 200);
stroke(255, 255, 255);
strokeWeight(2);
noFill();
for (var i = 210; i < 300; i += 10) {
arc(50, i, 80, 20, 0, PI);
arc(150, i, 80, 20, 0, PI);
arc(250, i, 80, 20, 0, PI);
arc(350, i, 80, 20, 0, PI);
}
noStroke();
fill(255, 105, 180);
rect(280, 330, 60, 20);
fill(255, 0, 0);
ellipse(320, 340, 20, 20);
fill(255, 255, 255);
ellipse(320, 340, 10, 10);