Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
region.py
Go to the documentation of this file.
1from typing import NamedTuple
2
3
4class Region(NamedTuple):
5 """Defines a rectangular region of the screen."""
6
7 x: int
8 y: int
9 width: int
10 height: int