├── .gitignore ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── blended_tiling ├── __init__.py ├── tiling_module.py └── version.py ├── examples ├── with_masks.gif ├── with_masks.jpg ├── with_masks_and_borders.jpg ├── with_masks_separate_tiles.jpg └── without_masks_separate_tiles.jpg ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_tiling_module.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/README.md -------------------------------------------------------------------------------- /blended_tiling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/blended_tiling/__init__.py -------------------------------------------------------------------------------- /blended_tiling/tiling_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/blended_tiling/tiling_module.py -------------------------------------------------------------------------------- /blended_tiling/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1-dev.7" 2 | -------------------------------------------------------------------------------- /examples/with_masks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/examples/with_masks.gif -------------------------------------------------------------------------------- /examples/with_masks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/examples/with_masks.jpg -------------------------------------------------------------------------------- /examples/with_masks_and_borders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/examples/with_masks_and_borders.jpg -------------------------------------------------------------------------------- /examples/with_masks_separate_tiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/examples/with_masks_separate_tiles.jpg -------------------------------------------------------------------------------- /examples/without_masks_separate_tiles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/examples/without_masks_separate_tiles.jpg -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Module tests 2 | -------------------------------------------------------------------------------- /tests/test_tiling_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProGamerGov/blended-tiling/HEAD/tests/test_tiling_module.py --------------------------------------------------------------------------------