|
2 | 2 | # Converted from NotoSansMono-Regular.ttf using: |
3 | 3 | # ./write_font_converter.py NotoSansMono-Regular.ttf 32 -c 0x20-0x7f |
4 | 4 |
|
5 | | -MAP = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" |
| 5 | +MAP = const(" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~") |
6 | 6 | BPP = 1 |
7 | 7 | HEIGHT = 34 |
8 | 8 | MAX_WIDTH = 19 |
9 | | -_WIDTHS = \ |
| 9 | +_WIDTHS = const(\ |
10 | 10 | b'\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13'\ |
11 | 11 | b'\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13'\ |
12 | 12 | b'\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13'\ |
13 | 13 | b'\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13'\ |
14 | 14 | b'\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13'\ |
15 | | - b'\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13' |
| 15 | + b'\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13\x13') |
16 | 16 |
|
17 | 17 | OFFSET_WIDTH = 2 |
18 | | -_OFFSETS = \ |
| 18 | +_OFFSETS = const(\ |
19 | 19 | b'\x00\x00\x02\x86\x05\x0c\x07\x92\x0a\x18\x0c\x9e\x0f\x24\x11\xaa'\ |
20 | 20 | b'\x14\x30\x16\xb6\x19\x3c\x1b\xc2\x1e\x48\x20\xce\x23\x54\x25\xda'\ |
21 | 21 | b'\x28\x60\x2a\xe6\x2d\x6c\x2f\xf2\x32\x78\x34\xfe\x37\x84\x3a\x0a'\ |
|
27 | 27 | b'\xa1\x80\xa4\x06\xa6\x8c\xa9\x12\xab\x98\xae\x1e\xb0\xa4\xb3\x2a'\ |
28 | 28 | b'\xb5\xb0\xb8\x36\xba\xbc\xbd\x42\xbf\xc8\xc2\x4e\xc4\xd4\xc7\x5a'\ |
29 | 29 | b'\xc9\xe0\xcc\x66\xce\xec\xd1\x72\xd3\xf8\xd6\x7e\xd9\x04\xdb\x8a'\ |
30 | | - b'\xde\x10\xe0\x96\xe3\x1c\xe5\xa2\xe8\x28\xea\xae\xed\x34\xef\xba' |
| 30 | + b'\xde\x10\xe0\x96\xe3\x1c\xe5\xa2\xe8\x28\xea\xae\xed\x34\xef\xba') |
31 | 31 |
|
32 | | -_BITMAPS =\ |
| 32 | +_BITMAPS =const(\ |
33 | 33 | b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ |
34 | 34 | b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ |
35 | 35 | b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ |
|
514 | 514 | b'\x01\x03\x00\x20\x60\x04\x0c\x00\x81\x80\x10\x30\x02\x06\x00\x40'\ |
515 | 515 | b'\xc0\x08\x18\x01\x03\x00\x20\x60\x04\x0c\x00\x81\x80\x10\x30\x02'\ |
516 | 516 | b'\x07\xff\xc0\xff\xf8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\ |
517 | | - b'\x00\x00\x00\x00\x00\x00\x00\x00' |
| 517 | + b'\x00\x00\x00\x00\x00\x00\x00\x00') |
518 | 518 |
|
519 | 519 | WIDTHS = memoryview(_WIDTHS) |
520 | 520 | OFFSETS = memoryview(_OFFSETS) |
|
0 commit comments