-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode (3)
37 lines (30 loc) · 809 Bytes
/
code (3)
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
background(135, 206, 250);
fill(255, 223, 0);
ellipse(350, 50, 80, 80);
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(0, 105, 148);
rect(0, 200, 400, 200);
fill(139, 69, 19);
arc(200, 220, 150, 100, PI, TWO_PI);
fill(255, 255, 255);
triangle(200, 120, 200, 220, 250, 220);
stroke(139, 69, 19);
strokeWeight(4);
line(200, 120, 200, 220);
noStroke();
fill(255, 69, 0);
ellipse(100, 300, 30, 15);
triangle(85, 300, 75, 290, 75, 310);
ellipse(300, 300, 30, 15);
triangle(285, 300, 275, 290, 275, 310);
fill(173, 216, 230, 150);
ellipse(110, 290, 10, 10);
ellipse(120, 310, 15, 15);
ellipse(310, 290, 10, 10);
ellipse(320, 310, 15, 15);