Reorganize source files into place.* dir

This commit is contained in:
2023-05-12 20:46:15 -05:00
parent 8ae7fee64a
commit 539fad19c0
6 changed files with 14 additions and 12 deletions

6
place/pixel_types.py Normal file
View File

@@ -0,0 +1,6 @@
from typing import Tuple
RGB = Tuple[int, int, int]
Pixel = Tuple[int, int, RGB]
RGBA = Tuple[int, int, int, int]
AlphaPixel = Tuple[int, int, RGBA]