-
Notifications
You must be signed in to change notification settings - Fork 0
/
drawGrid.js
48 lines (45 loc) · 1.22 KB
/
drawGrid.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
// temp func to show grid lines
function drawGrid() {
if (false) {
const colours = ["red", "yellow", "green", "white", "orange"];
for (let i = 0; i <= numberOfLetters; i++) {
// draw lines in between
drawLineXForwards({
initialCoords: [
letterWidth * i + paddingAroundLetters * i,
paddingAroundLetters,
],
yPositionOffset: 0,
length: paddingAroundLetters,
colour: colours[2],
});
drawLineXForwards({
initialCoords: [
letterWidth * i + paddingAroundLetters * (i + 1),
paddingAroundLetters,
],
yPositionOffset: 0,
length: letterWidth,
colour: colours[3],
});
drawLineXForwards({
initialCoords: [
letterWidth * i + paddingAroundLetters * i,
height - paddingAroundLetters,
],
yPositionOffset: 0,
length: paddingAroundLetters,
colour: colours[2],
});
drawLineXForwards({
initialCoords: [
letterWidth * i + paddingAroundLetters * (i + 1),
height - paddingAroundLetters,
],
yPositionOffset: 0,
length: letterWidth,
colour: colours[3],
});
}
}
}