This repository has been archived by the owner on Apr 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgraphPaper.lua
59 lines (59 loc) · 2.83 KB
/
graphPaper.lua
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
d = hs.drawing.rectangle(hs.screen.mainScreen():fullFrame())
:setFill(true)
:setStroke(false)
:setFillColor({ image = hs.image.imageFromASCII([[
.........1.........3.........5.........7.........N
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
A................................................A
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
C................................................C
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
E................................................E
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
G................................................G
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
..................................................
L........1.........3.........5.........7.........M
]],
{
[9] = { strokeColor = { blue = 1, alpha = 1 } },
[10] = { strokeColor = { white = .25, alpha = 1 }, fillColor = { alpha = 0 }, shouldClose = false },
})}):show()