Пример #1
0
def UnEqualHexes():
    hexes = [hexc.AbstractHex(x, x + 1, -x - (x + 1)) for x in range(50)]
    return list(zip(hexes, reversed(hexes)))
Пример #2
0
def Hexes():
    return [hexc.AbstractHex(x, x + 1, -x - (x + 1)) for x in range(50)]
Пример #3
0
def faux_slice():
    return [(h, i)
            for i, h in enumerate(list(hexc.AbstractHex(0, 0).within(10)))]