rename to snarled

This commit is contained in:
Jan Petykiewicz 2022-03-31 00:43:54 -07:00
commit 4d7709d615
14 changed files with 32 additions and 32 deletions

5
snarled/types.py Normal file
View file

@ -0,0 +1,5 @@
from typing import Union, Tuple, List, Sequence, Optional, Hashable
layer_t = Hashable
contour_t = List[Tuple[int, int]]
connectivity_t = Sequence[Tuple[layer_t, Optional[layer_t], layer_t]]