hilbert/Python/test2.py

7 lines
161 B
Python
Raw Normal View History

2018-12-29 21:02:44 +01:00
#!/usr/bin/python3
from hilbertgenerator import Vector, hilbertgenerator
n = 8
for r in hilbertgenerator(Vector(n, n), Vector(n, 0), Vector(0,n)):
print(r)