Files
v6-place/place/pixel_types.py

6 lines
149 B
Python

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]