CoolFace
Apppublic

Aluode/PerceptionLabPortable

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
region.py11 linesDownload Raw Back to rich
1from typing import NamedTuple2 3 4class Region(NamedTuple):5    """Defines a rectangular region of the screen."""6 7    x: int8    y: int9    width: int10    height: int11 
Aluode/PerceptionLabPortable · CoolFace