Grid
Represent 2D grid as Pydantic class.
Point
Bases: BaseModel
A 2D point.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
int
|
x coordinate |
required |
y
|
int
|
y coordinate |
required |
Source code in src/snailz/grid.py
9 10 11 12 13 |
|
Grid
Bases: BaseModel
, Generic[T]
A 2D grid.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
width
|
int
|
Width of the grid |
required |
height
|
int
|
Height of the grid |
required |
default
|
TypeVar
|
Default value for uninitialized cells |
required |
data
|
list[list[TypeVar]] | None
|
Grid values |
None
|
Source code in src/snailz/grid.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|