Tempo
Tempo is an app that allows users to create and manage timers, stopwatches, and alarms.
fonts
font3.cpp
Go to the documentation of this file.
1
#include "
font3.hpp
"
2
3
/*
4
FONT NAME: Sweet
5
https://patorjk.com/software/taag/#p=display&c=echo&f=Sweet&t=1%202%203%204%205%2067%208%209%20%2C%20.%20a%20p%20m
6
*/
7
8
using namespace
std
;
9
10
vector<string>
f3_0
= {
11
" .-. "
,
12
" / \\ "
,
13
" | .-. ; "
,
14
" | | | | "
,
15
" | | | | "
,
16
" | | | | "
,
17
" | ' | | "
,
18
" ' `-' / "
,
19
" `.__,' "
};
20
21
22
vector<string>
f3_1
= {
23
" .--. "
,
24
" (_ | "
,
25
" | | "
,
26
" | | "
,
27
" | | "
,
28
" | | "
,
29
" | | "
,
30
" | | "
,
31
" (___) "
};
32
33
vector<string>
f3_2
= {
34
35
" .--. "
,
36
" ; _ \\ "
,
37
"(___)\\` | "
,
38
" ' ' "
,
39
" / / "
,
40
" / / "
,
41
" / / "
,
42
" / '____ "
,
43
"(_______) "
};
44
45
46
47
vector<string>
f3_3
= {
48
" .--. "
,
49
" / \\ "
,
50
"(___)`. | "
,
51
" .-' / "
,
52
" '. \\ "
,
53
" ___ \\ ' "
,
54
"( ) ; | "
,
55
" \\ `-' / "
,
56
" ',__.' "
,
57
};
58
59
60
vector<string>
f3_4
= {
61
62
" ,--. "
,
63
" / | "
,
64
" / .' | "
,
65
" / / | | "
,
66
"/ / | | "
,
67
"\\ `--' |-."
,
68
" `---| |-'"
,
69
" | | "
,
70
" (___) "
};
71
72
73
vector<string>
f3_5
= {
74
",-----. "
,
75
"| ___) "
,
76
"| | "
,
77
"| '--. "
,
78
"'---. \\ "
,
79
" ___ \\ | "
,
80
"( ) | | "
,
81
" ; `-' / "
,
82
" '.__.' "
};
83
84
85
vector<string>
f3_6
= {
86
" .--. "
,
87
" / , ; "
,
88
" | .(___) "
,
89
" | | _ "
,
90
" | ' `. "
,
91
" | .-, . "
,
92
" | | | | "
,
93
" . `-' ; "
,
94
" '.__.' "
};
95
96
97
vector<string>
f3_7
= {
98
99
" .----. "
,
100
" (___ | "
,
101
" | | "
,
102
" | | "
,
103
" | | "
,
104
" | | "
,
105
" | | "
,
106
" | | "
,
107
" (___) "
};
108
109
110
vector<string>
f3_8
= {
111
" .--. "
,
112
" / _ \\ "
,
113
". .' `. ; "
,
114
"| \\ | | "
,
115
" \\ `.(_.' "
,
116
" /`'. '. "
,
117
"| | `\\ | "
,
118
"; '._,' ' "
,
119
" '.___.' "
,
120
};
121
122
123
124
125
vector<string>
f3_9
= {
126
" .--. "
,
127
" / \\ "
,
128
" ; ,-. ' "
,
129
" | | | | "
,
130
" ' `-' | "
,
131
" `.__. | "
,
132
" ___ | | "
,
133
" ( )' / "
,
134
" `,__.' "
,
135
};
136
137
138
vector<string>
f3_colon
= {
139
" "
,
140
" .-. "
,
141
"( )"
,
142
" `-' "
,
143
" "
,
144
" .-. "
,
145
"( )"
,
146
" `-' "
,
147
" "
,
148
};
149
150
151
vector<string>
f3_period
= {
152
" "
,
153
" "
,
154
" "
,
155
" "
,
156
" "
,
157
" "
,
158
" .-. "
,
159
"( )"
,
160
" `-' "
,
161
};
162
163
164
vector<string>
f3_a
= {
165
" "
,
166
" .---. "
,
167
" / .-, \\ "
,
168
"(__) ; | "
,
169
" .' ` | "
,
170
" / .'| | "
,
171
"; | ; | "
,
172
"' `-' |"
,
173
" `.__.'_."
};
174
175
176
vector<string>
f3_p
= {
177
" "
,
178
" .-.. "
,
179
" / \\ "
,
180
" ' .-, ; "
,
181
" | | | | "
,
182
" | `-' ' "
,
183
" | \\__.' "
,
184
" | | "
,
185
"(___) "
};
186
187
188
vector<string>
f3_m
= {
189
" "
,
190
" ___ .-. .-. "
,
191
"( ) ' \\ "
,
192
" | .-. .-. ; "
,
193
" | | | | | | "
,
194
" | | | | | | "
,
195
" | | | | | | "
,
196
" | | | | | | "
,
197
"(___)(___)(___)"
};
198
199
vector<vector<string>>
f3_ascii
= {
f3_0
,
f3_1
,
f3_2
,
f3_3
,
f3_4
,
f3_5
,
f3_6
,
f3_7
,
f3_8
,
f3_9
,
f3_colon
,
f3_period
,
f3_a
,
f3_p
, f3_m};
200
int
f3_height
= f3_0.size();
f3_8
vector< string > f3_8
Definition:
font3.cpp:110
f3_0
vector< string > f3_0
Definition:
font3.cpp:10
f3_p
vector< string > f3_p
Definition:
font3.cpp:176
f3_m
vector< string > f3_m
Definition:
font3.cpp:188
std
STL namespace.
f3_ascii
vector< vector< string > > f3_ascii
Definition:
font3.cpp:199
f3_2
vector< string > f3_2
Definition:
font3.cpp:33
f3_colon
vector< string > f3_colon
Definition:
font3.cpp:138
f3_4
vector< string > f3_4
Definition:
font3.cpp:60
f3_6
vector< string > f3_6
Definition:
font3.cpp:85
f3_7
vector< string > f3_7
Definition:
font3.cpp:97
f3_period
vector< string > f3_period
Definition:
font3.cpp:151
f3_9
vector< string > f3_9
Definition:
font3.cpp:125
f3_height
int f3_height
Definition:
font3.cpp:200
f3_a
vector< string > f3_a
Definition:
font3.cpp:164
f3_1
vector< string > f3_1
Definition:
font3.cpp:22
font3.hpp
f3_3
vector< string > f3_3
Definition:
font3.cpp:47
f3_5
vector< string > f3_5
Definition:
font3.cpp:73
Generated on Wed Oct 16 2024 20:10:05 for Tempo by
1.8.13