├── .gitignore ├── README.md ├── main.py ├── tiles1 ├── 0000.png ├── 0001.png ├── 0010.png ├── 0011.png ├── 0022.png ├── 0100.png ├── 0101.png ├── 0110.png ├── 0111.png ├── 0202.png ├── 0220.png ├── 1000.png ├── 1001.png ├── 1010.png ├── 1011.png ├── 1100.png ├── 1101.png ├── 1110.png ├── 1111.png ├── 1111b.png ├── 1111c.png ├── 1212.png ├── 2002.png ├── 2020.png ├── 2121.png └── 2200.png ├── tiles2 ├── 0000.png ├── 0001.png ├── 0010.png ├── 0011.png ├── 0100.png ├── 0101.png ├── 0110.png ├── 0111.png ├── 1000.png ├── 1001.png ├── 1010.png ├── 1011.png ├── 1100.png ├── 1101.png ├── 1110.png └── 1111.png └── tiles3 ├── 0000.png ├── 0001.png ├── 0002.png ├── 0010.png ├── 0011.png ├── 0020.png ├── 0022.png ├── 0100.png ├── 0101.png ├── 0110.png ├── 0111.png ├── 0112.png ├── 0121.png ├── 0200.png ├── 0202.png ├── 0202b.png ├── 0211.png ├── 0220.png ├── 0222.png ├── 1000.png ├── 1001.png ├── 1010.png ├── 1011.png ├── 1012.png ├── 1021.png ├── 1100.png ├── 1101.png ├── 1102.png ├── 1110.png ├── 1111.png ├── 1112.png ├── 1120.png ├── 1121.png ├── 1122.png ├── 1201.png ├── 1210.png ├── 1211.png ├── 1221.png ├── 1222.png ├── 2000.png ├── 2002.png ├── 2011.png ├── 2020.png ├── 2022.png ├── 2101.png ├── 2110.png ├── 2111.png ├── 2112.png ├── 2122.png ├── 2200.png ├── 2202.png ├── 2211.png ├── 2212.png ├── 2220.png ├── 2221.png └── 2222.png /.gitignore: -------------------------------------------------------------------------------- 1 | /*.png 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Screenshot](http://i.imgur.com/dqlqsEA.png) 2 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from collections import defaultdict 2 | import cairo 3 | import itertools 4 | import operator 5 | import os 6 | import random 7 | 8 | WIDTH = 16 * 2 9 | HEIGHT = 9 * 2 10 | 11 | WEIGHT_NONE = 10 12 | WEIGHT_DEAD_END = 1 13 | WEIGHT_TURN = 10 14 | WEIGHT_STRAIGHT = 10 15 | WEIGHT_T_JUNCTION = 10 16 | WEIGHT_INTERSECTION = 10 17 | WEIGHT_RIVER_TURN = 2 18 | WEIGHT_RIVER_STRAIGHT = 2 19 | WEIGHT_RIVER_BRIDGE = 2 20 | 21 | if False: 22 | WEIGHT_NONE = random.randint(0, 10) 23 | WEIGHT_DEAD_END = random.randint(0, 10) 24 | WEIGHT_TURN = random.randint(0, 10) 25 | WEIGHT_STRAIGHT = random.randint(0, 10) 26 | WEIGHT_T_JUNCTION = random.randint(0, 10) 27 | WEIGHT_INTERSECTION = random.randint(0, 10) 28 | WEIGHT_RIVER_TURN = random.randint(0, 10) 29 | WEIGHT_RIVER_STRAIGHT = random.randint(0, 10) 30 | WEIGHT_RIVER_BRIDGE = random.randint(0, 10) 31 | 32 | WEIGHTS = { 33 | '0000': WEIGHT_NONE, 34 | '0001': WEIGHT_DEAD_END, 35 | '0010': WEIGHT_DEAD_END, 36 | '0011': WEIGHT_TURN, 37 | '0100': WEIGHT_DEAD_END, 38 | '0101': WEIGHT_STRAIGHT, 39 | '0110': WEIGHT_TURN, 40 | '0111': WEIGHT_T_JUNCTION, 41 | '1000': WEIGHT_DEAD_END, 42 | '1001': WEIGHT_TURN, 43 | '1010': WEIGHT_STRAIGHT, 44 | '1011': WEIGHT_T_JUNCTION, 45 | '1100': WEIGHT_TURN, 46 | '1101': WEIGHT_T_JUNCTION, 47 | '1110': WEIGHT_T_JUNCTION, 48 | '1111': WEIGHT_INTERSECTION, 49 | '0022': WEIGHT_RIVER_TURN, 50 | '0202': WEIGHT_RIVER_STRAIGHT, 51 | '0220': WEIGHT_RIVER_TURN, 52 | '1212': WEIGHT_RIVER_BRIDGE, 53 | '2002': WEIGHT_RIVER_TURN, 54 | '2020': WEIGHT_RIVER_STRAIGHT, 55 | '2121': WEIGHT_RIVER_BRIDGE, 56 | '2200': WEIGHT_RIVER_TURN, 57 | } 58 | 59 | for k in itertools.product('012', repeat=4): 60 | k = ''.join(k) 61 | if k not in WEIGHTS: 62 | WEIGHTS[k] = 1 63 | 64 | def load_tiles(path): 65 | result = defaultdict(list) 66 | for name in os.listdir(path): 67 | key = name[:4] 68 | if key not in WEIGHTS: 69 | continue 70 | surface = cairo.ImageSurface.create_from_png(os.path.join(path, name)) 71 | result[key].append(surface) 72 | return result 73 | 74 | def generate(tiles, width, height): 75 | tile_size = tiles.values()[0][0].get_width() 76 | surface = cairo.ImageSurface( 77 | cairo.FORMAT_RGB24, width * tile_size, height * tile_size) 78 | dc = cairo.Context(surface) 79 | defaults = [] 80 | for k, weight in WEIGHTS.items(): 81 | if k not in tiles: 82 | continue 83 | defaults.extend([k] * weight) 84 | digits = sorted(set(reduce(operator.add, WEIGHTS))) 85 | lookup = {} 86 | for y in range(height): 87 | for x in range(width): 88 | n = lookup.get((x, y - 1), random.choice(defaults))[2] 89 | w = lookup.get((x - 1, y), random.choice(defaults))[1] 90 | choices = [] 91 | for e in digits: 92 | for s in digits: 93 | k = n + e + s + w 94 | if k not in tiles: 95 | continue 96 | choices.extend([k] * WEIGHTS.get(k)) 97 | k = random.choice(choices) 98 | lookup[(x, y)] = k 99 | tile = random.choice(tiles[k]) 100 | dc.set_source_surface(tile, x * tile_size, y * tile_size) 101 | dc.paint() 102 | return surface 103 | 104 | def main(): 105 | tiles = load_tiles('tiles1') 106 | surface = generate(tiles, WIDTH, HEIGHT) 107 | surface.write_to_png('output.png') 108 | 109 | if __name__ == '__main__': 110 | main() 111 | -------------------------------------------------------------------------------- /tiles1/0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0000.png -------------------------------------------------------------------------------- /tiles1/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0001.png -------------------------------------------------------------------------------- /tiles1/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0010.png -------------------------------------------------------------------------------- /tiles1/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0011.png -------------------------------------------------------------------------------- /tiles1/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0022.png -------------------------------------------------------------------------------- /tiles1/0100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0100.png -------------------------------------------------------------------------------- /tiles1/0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0101.png -------------------------------------------------------------------------------- /tiles1/0110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0110.png -------------------------------------------------------------------------------- /tiles1/0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0111.png -------------------------------------------------------------------------------- /tiles1/0202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0202.png -------------------------------------------------------------------------------- /tiles1/0220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/0220.png -------------------------------------------------------------------------------- /tiles1/1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1000.png -------------------------------------------------------------------------------- /tiles1/1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1001.png -------------------------------------------------------------------------------- /tiles1/1010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1010.png -------------------------------------------------------------------------------- /tiles1/1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1011.png -------------------------------------------------------------------------------- /tiles1/1100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1100.png -------------------------------------------------------------------------------- /tiles1/1101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1101.png -------------------------------------------------------------------------------- /tiles1/1110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1110.png -------------------------------------------------------------------------------- /tiles1/1111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1111.png -------------------------------------------------------------------------------- /tiles1/1111b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1111b.png -------------------------------------------------------------------------------- /tiles1/1111c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1111c.png -------------------------------------------------------------------------------- /tiles1/1212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/1212.png -------------------------------------------------------------------------------- /tiles1/2002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/2002.png -------------------------------------------------------------------------------- /tiles1/2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/2020.png -------------------------------------------------------------------------------- /tiles1/2121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/2121.png -------------------------------------------------------------------------------- /tiles1/2200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles1/2200.png -------------------------------------------------------------------------------- /tiles2/0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/0000.png -------------------------------------------------------------------------------- /tiles2/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/0001.png -------------------------------------------------------------------------------- /tiles2/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/0010.png -------------------------------------------------------------------------------- /tiles2/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/0011.png -------------------------------------------------------------------------------- /tiles2/0100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/0100.png -------------------------------------------------------------------------------- /tiles2/0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/0101.png -------------------------------------------------------------------------------- /tiles2/0110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/0110.png -------------------------------------------------------------------------------- /tiles2/0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/0111.png -------------------------------------------------------------------------------- /tiles2/1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/1000.png -------------------------------------------------------------------------------- /tiles2/1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/1001.png -------------------------------------------------------------------------------- /tiles2/1010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/1010.png -------------------------------------------------------------------------------- /tiles2/1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/1011.png -------------------------------------------------------------------------------- /tiles2/1100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/1100.png -------------------------------------------------------------------------------- /tiles2/1101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/1101.png -------------------------------------------------------------------------------- /tiles2/1110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/1110.png -------------------------------------------------------------------------------- /tiles2/1111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles2/1111.png -------------------------------------------------------------------------------- /tiles3/0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0000.png -------------------------------------------------------------------------------- /tiles3/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0001.png -------------------------------------------------------------------------------- /tiles3/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0002.png -------------------------------------------------------------------------------- /tiles3/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0010.png -------------------------------------------------------------------------------- /tiles3/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0011.png -------------------------------------------------------------------------------- /tiles3/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0020.png -------------------------------------------------------------------------------- /tiles3/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0022.png -------------------------------------------------------------------------------- /tiles3/0100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0100.png -------------------------------------------------------------------------------- /tiles3/0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0101.png -------------------------------------------------------------------------------- /tiles3/0110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0110.png -------------------------------------------------------------------------------- /tiles3/0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0111.png -------------------------------------------------------------------------------- /tiles3/0112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0112.png -------------------------------------------------------------------------------- /tiles3/0121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0121.png -------------------------------------------------------------------------------- /tiles3/0200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0200.png -------------------------------------------------------------------------------- /tiles3/0202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0202.png -------------------------------------------------------------------------------- /tiles3/0202b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0202b.png -------------------------------------------------------------------------------- /tiles3/0211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0211.png -------------------------------------------------------------------------------- /tiles3/0220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0220.png -------------------------------------------------------------------------------- /tiles3/0222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/0222.png -------------------------------------------------------------------------------- /tiles3/1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1000.png -------------------------------------------------------------------------------- /tiles3/1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1001.png -------------------------------------------------------------------------------- /tiles3/1010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1010.png -------------------------------------------------------------------------------- /tiles3/1011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1011.png -------------------------------------------------------------------------------- /tiles3/1012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1012.png -------------------------------------------------------------------------------- /tiles3/1021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1021.png -------------------------------------------------------------------------------- /tiles3/1100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1100.png -------------------------------------------------------------------------------- /tiles3/1101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1101.png -------------------------------------------------------------------------------- /tiles3/1102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1102.png -------------------------------------------------------------------------------- /tiles3/1110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1110.png -------------------------------------------------------------------------------- /tiles3/1111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1111.png -------------------------------------------------------------------------------- /tiles3/1112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1112.png -------------------------------------------------------------------------------- /tiles3/1120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1120.png -------------------------------------------------------------------------------- /tiles3/1121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1121.png -------------------------------------------------------------------------------- /tiles3/1122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1122.png -------------------------------------------------------------------------------- /tiles3/1201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1201.png -------------------------------------------------------------------------------- /tiles3/1210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1210.png -------------------------------------------------------------------------------- /tiles3/1211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1211.png -------------------------------------------------------------------------------- /tiles3/1221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1221.png -------------------------------------------------------------------------------- /tiles3/1222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/1222.png -------------------------------------------------------------------------------- /tiles3/2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2000.png -------------------------------------------------------------------------------- /tiles3/2002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2002.png -------------------------------------------------------------------------------- /tiles3/2011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2011.png -------------------------------------------------------------------------------- /tiles3/2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2020.png -------------------------------------------------------------------------------- /tiles3/2022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2022.png -------------------------------------------------------------------------------- /tiles3/2101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2101.png -------------------------------------------------------------------------------- /tiles3/2110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2110.png -------------------------------------------------------------------------------- /tiles3/2111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2111.png -------------------------------------------------------------------------------- /tiles3/2112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2112.png -------------------------------------------------------------------------------- /tiles3/2122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2122.png -------------------------------------------------------------------------------- /tiles3/2200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2200.png -------------------------------------------------------------------------------- /tiles3/2202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2202.png -------------------------------------------------------------------------------- /tiles3/2211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2211.png -------------------------------------------------------------------------------- /tiles3/2212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2212.png -------------------------------------------------------------------------------- /tiles3/2220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2220.png -------------------------------------------------------------------------------- /tiles3/2221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2221.png -------------------------------------------------------------------------------- /tiles3/2222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fogleman/WangTiling/e6b16393b14775e799884970a6fe34f108b4c7fd/tiles3/2222.png --------------------------------------------------------------------------------