├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── endian.h ├── leogeo.c ├── leogeo.h ├── leoimginfo.c ├── ma2d1view.c ├── ma3d1view.c ├── mathumbview.c ├── mfs.c ├── mfs.h ├── mfsextract.c ├── psppmview.c ├── samples ├── 3d │ ├── Mario head.MA3D1 │ ├── Mario.MA3D1 │ ├── obj.MA3D1 │ ├── obj2.MA3D1 │ ├── paper cube tex.MA3D1 │ └── paper cube.MA3D1 ├── ma2d1-compressed.MA2D1 ├── ma2d1-uncompressed.MA2D1 └── psppm.PSPPM ├── screenshots ├── ma2d1view.png ├── ma3d1view.png ├── mathumbview.png └── psppmview.png ├── sha1.c ├── sha1.h ├── yay1.c └── yay1.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/README.md -------------------------------------------------------------------------------- /endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/endian.h -------------------------------------------------------------------------------- /leogeo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/leogeo.c -------------------------------------------------------------------------------- /leogeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/leogeo.h -------------------------------------------------------------------------------- /leoimginfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/leoimginfo.c -------------------------------------------------------------------------------- /ma2d1view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/ma2d1view.c -------------------------------------------------------------------------------- /ma3d1view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/ma3d1view.c -------------------------------------------------------------------------------- /mathumbview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/mathumbview.c -------------------------------------------------------------------------------- /mfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/mfs.c -------------------------------------------------------------------------------- /mfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/mfs.h -------------------------------------------------------------------------------- /mfsextract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/mfsextract.c -------------------------------------------------------------------------------- /psppmview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/psppmview.c -------------------------------------------------------------------------------- /samples/3d/Mario head.MA3D1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/3d/Mario head.MA3D1 -------------------------------------------------------------------------------- /samples/3d/Mario.MA3D1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/3d/Mario.MA3D1 -------------------------------------------------------------------------------- /samples/3d/obj.MA3D1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/3d/obj.MA3D1 -------------------------------------------------------------------------------- /samples/3d/obj2.MA3D1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/3d/obj2.MA3D1 -------------------------------------------------------------------------------- /samples/3d/paper cube tex.MA3D1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/3d/paper cube tex.MA3D1 -------------------------------------------------------------------------------- /samples/3d/paper cube.MA3D1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/3d/paper cube.MA3D1 -------------------------------------------------------------------------------- /samples/ma2d1-compressed.MA2D1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/ma2d1-compressed.MA2D1 -------------------------------------------------------------------------------- /samples/ma2d1-uncompressed.MA2D1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/ma2d1-uncompressed.MA2D1 -------------------------------------------------------------------------------- /samples/psppm.PSPPM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/samples/psppm.PSPPM -------------------------------------------------------------------------------- /screenshots/ma2d1view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/screenshots/ma2d1view.png -------------------------------------------------------------------------------- /screenshots/ma3d1view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/screenshots/ma3d1view.png -------------------------------------------------------------------------------- /screenshots/mathumbview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/screenshots/mathumbview.png -------------------------------------------------------------------------------- /screenshots/psppmview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/screenshots/psppmview.png -------------------------------------------------------------------------------- /sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/sha1.c -------------------------------------------------------------------------------- /sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/sha1.h -------------------------------------------------------------------------------- /yay1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/yay1.c -------------------------------------------------------------------------------- /yay1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkbenaim/leotools/HEAD/yay1.h --------------------------------------------------------------------------------