xxxxxxxxxx
112
const arr = [6.6,
6.3,
6.5,
6.3,
6.3,
6.5,
6.4,
6.3,
6.3,
6.1,
6.2,
6.4,
6.4,
6.2,
6.2,
6.1,
6.1,
6.2,
6.5,
6.5,
6.5,
6.6,
6.8,
7,
7.2,
8.3,
8.1,
12.7,
12.5,
15.8,
15.9,
16.1,
15.7,
15.2,
15.4,
14.7,
15.3,
16.8,
16.7,
16.7,
16.8,
17,
15.8,
18,
19.9,
18.1,
16.1,
16.7,
18,
18.8,
19.1,
17.8,
16.3,
16.1,
16.6,
17.2,
17.8,
7,
7.3,
6.9,
6.2,
6.1,
5.9,
6.1,
5.7,
5.7,
5.7,
5.7,
5.6,
5.6,
5.6,
5.7,
5.5,
5.4,
5.4,
5.7,
5.7,
5.7,
5.8,
5.7,
6,
6.2,
6.7,
7.2,
13.7,
17.2,
14.8,
13.6,
12.8,
12.4,
12.3]
function setup() {
createCanvas(400, 400);
noLoop();
}
function draw() {
background(220);
translate(width / 2, height / 2);
beginShape();
for (let j = 0; j < 91; j++) {
let a = 10 * arr[j];
let theta = -radians(2 * j);
let x = a * cos(theta);
let y = a * sin(theta);
vertex(x, y);
}
endShape();
}