bitwidgets: Add two more glyphs

This commit is contained in:
June Tate-Gans 2021-05-08 23:42:21 -05:00
parent 73649c7244
commit 82a6094b0a

View File

@ -10,6 +10,9 @@ class Glyphs(enum.Enum):
UP_ARROW = [(2, 4), (2, 0), (4, 2), (0, 2), (2, 0)] UP_ARROW = [(2, 4), (2, 0), (4, 2), (0, 2), (2, 0)]
CHECKMARK = [(0, 3), (1, 4), (4, 1), (1, 4)] CHECKMARK = [(0, 3), (1, 4), (4, 1), (1, 4)]
XMARK = [(0, 0), (4, 4), (2, 2), (4, 0), (0, 4)] XMARK = [(0, 0), (4, 4), (2, 2), (4, 0), (0, 4)]
CHEVRON_RIGHT = [(4, 2), (2, 0), (2, 4), (4, 2), (2, 2)]
WRENCH = [(0, 4), (0, 3), (2, 1), (2, 0), (3, 0), (4, 1), (4, 2), (3, 2),
(1, 4)]
BLANK = [] BLANK = []
BOUNDS = (5, 5) BOUNDS = (5, 5)