mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
9 lines
140 B
Python
9 lines
140 B
Python
from array2d import chunked_array2d
|
|
from linalg import vec2i
|
|
|
|
a = chunked_array2d(4, default=0)
|
|
|
|
a[vec2i.ONE] = 1
|
|
|
|
print(a.view().render())
|