-
Notifications
You must be signed in to change notification settings - Fork 0
/
code(1)
35 lines (35 loc) · 835 Bytes
/
code(1)
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
background(25, 25, 112);
fill(255, 255, 224);
ellipse(350, 50, 80, 80);
fill(255, 255, 255);
for (var i = 0; i < 20; i++) {
var x = random(0, 400);
var y = random(0, 200);
ellipse(x, y, 5, 5);
}
fill(34, 139, 34);
rect(0, 300, 400, 100);
fill(139, 69, 19);
rect(150, 200, 100, 100);
fill(165, 42, 42);
triangle(140, 200, 200, 150, 260, 200);
fill(139, 69, 19);
rect(190, 250, 20, 50);
fill(255, 255, 255);
rect(160, 220, 20, 20);
rect(220, 220, 20, 20);
stroke(139, 69, 19);
line(170, 220, 170, 240);
line(160, 230, 180, 230);
line(230, 220, 230, 240);
line(220, 230, 240, 230);
fill(139, 69, 19);
rect(50, 250, 20, 50);
rect(330, 250, 20, 50);
fill(34, 139, 34);
ellipse(60, 230, 60, 60);
ellipse(30, 240, 50, 50);
ellipse(90, 240, 50, 50);
ellipse(340, 230, 60, 60);
ellipse(310, 240, 50, 50);
ellipse(370, 240, 50, 50);