Adafruit_CircuitPython_Bitm.../test/fontio.py
2020-03-15 16:17:54 -04:00

6 lines
150 B
Python

import collections
Glyph = collections.namedtuple(
"Glyph",
["bitmap", "tile_index", "width", "height", "dx", "dy", "shift_x", "shift_y"],
)