├── .gitignore ├── LICENSE ├── README.md ├── convert_nfp.py ├── nfp.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DownrightNifty/computercraft-stuff/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DownrightNifty/computercraft-stuff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DownrightNifty/computercraft-stuff/HEAD/README.md -------------------------------------------------------------------------------- /convert_nfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DownrightNifty/computercraft-stuff/HEAD/convert_nfp.py -------------------------------------------------------------------------------- /nfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DownrightNifty/computercraft-stuff/HEAD/nfp.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow>=6 2 | numpy>=1.16 --------------------------------------------------------------------------------