-
Notifications
You must be signed in to change notification settings - Fork 4
/
sketch.js
47 lines (38 loc) · 883 Bytes
/
sketch.js
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
function setup() {
createCanvas(400, 400);
strokeCap(ROUND);
strokeJoin(ROUND);
noFill();
}
function draw() {
background(255);
strokeWeight(11.6);
stroke("#70327E");
line(103, 178, 103, 137);
line(103, 137, 90, 137);
line(90, 137, 90, 112);
line(90, 112, 198, 112);
line(198, 112, 198, 158);
stroke("#30C5F3");
line(228, 158, 221, 112);
line(221, 112, 272, 112);
line(272, 112, 265, 158);
stroke("#EF63A4");
line(313, 266, 289, 237);
line(289, 237, 305, 195);
line(305, 195, 289, 158);
stroke("#70327E");
circle(140, 235, 53 * 2);
strokeWeight(11.2);
stroke("#30C5F3");
circle(221, 270, 18 * 2);
circle(272, 270, 18 * 2);
stroke("#F89E4F");
strokeWeight(11.6);
line(267, 178, 267, 213);
line(247, 178, 247, 213);
line(227, 178, 227, 213);
line(272, 236, 221, 236);
// Remove to allow Animation
noLoop();
}