Wed, 28 Aug 2019 19:53:19 +0200
Started with the stubs for CircuitPython.
# -*- coding: utf-8 -*- # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module containing stubs for API generation of the 'fontio' module. """ class BuiltinFont(): @property def bitmap(self): pass def get_bounding_box(self): pass def get_glyph(self, codepoint): pass class Glyph(): def __init__(self, bitmap, tile_index, width, height, dx, dy, shift_x, shift_y): pass