├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── README.MD ├── UNLICENSE.txt ├── VizLayer.zip ├── demo.gif └── src ├── VizLayer.py ├── VizLayer_compiler.spec ├── data ├── 0.png ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── default.png └── locks.png ├── default.ico └── troubleshooting.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/README.MD -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /VizLayer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/VizLayer.zip -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/demo.gif -------------------------------------------------------------------------------- /src/VizLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/VizLayer.py -------------------------------------------------------------------------------- /src/VizLayer_compiler.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/VizLayer_compiler.spec -------------------------------------------------------------------------------- /src/data/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/0.png -------------------------------------------------------------------------------- /src/data/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/1.png -------------------------------------------------------------------------------- /src/data/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/2.png -------------------------------------------------------------------------------- /src/data/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/3.png -------------------------------------------------------------------------------- /src/data/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/4.png -------------------------------------------------------------------------------- /src/data/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/5.png -------------------------------------------------------------------------------- /src/data/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/6.png -------------------------------------------------------------------------------- /src/data/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/7.png -------------------------------------------------------------------------------- /src/data/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/default.png -------------------------------------------------------------------------------- /src/data/locks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/data/locks.png -------------------------------------------------------------------------------- /src/default.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/default.ico -------------------------------------------------------------------------------- /src/troubleshooting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyv120/vizLayer/HEAD/src/troubleshooting.txt --------------------------------------------------------------------------------