generated from drawwithcode/P5-empty-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sketch_uk.js
77 lines (60 loc) · 1.56 KB
/
sketch_uk.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
let data;
let monumentGrotesk;
let analyser;
let renzi;
let craxi;
let berlusconi;
let andreotti;
renziFill = 0;
craxiFill = 0;
berlusconiFill = 0;
andreottiFill = 0;
function preload() {
data = loadJSON("assets/uk_prime_ministers.json");
monumentGrotesk = loadFont("assets/MonumentGrotesk-Regular.ttf");
}
function setup() {
createCanvas(windowWidth, windowHeight);
frameRate(240);
}
function draw() {
background(255);
let presidenti = data.presidenti;
for (let i = 0; i < presidenti.length; i++) {
const presidente = presidenti[i];
const name = presidente.name;
const size = presidente.daysInOffice;
const offset = width / presidenti.length;
const foto = presidente.image;
const partito = presidente.party;
const ngoverni = presidente.govNum;
//le foto sono recuperate da URL all'interno del JSON
let img = createImg(foto);
img.hide();
push();
translate(offset * i, 0);
//la dimensione della foto è proporzionata al numero di giorni che ha trascorso come capo del governo
image(img, 0, 0, size / 10, size / 7.5);
//cornice
noFill();
rect(0, 0, size / 10, size / 7.5);
//divisori
sezioni = rect(0, 0, width, height);
pop();
//testi
push();
angleMode(DEGREES);
rotate(90);
translate(height / 2, -(offset * i + 7));
fill(0);
textSize(20);
textFont(monumentGrotesk);
text(name, 0, 0);
text(partito, height / 4, 0);
text("X " + ngoverni, height / 2.4, 0);
pop();
}
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}