├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bench.c ├── morton.c ├── morton.h └── test.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | test 3 | bench 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/morton/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/morton/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/morton/HEAD/README.md -------------------------------------------------------------------------------- /bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/morton/HEAD/bench.c -------------------------------------------------------------------------------- /morton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/morton/HEAD/morton.c -------------------------------------------------------------------------------- /morton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/morton/HEAD/morton.h -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jart/morton/HEAD/test.c --------------------------------------------------------------------------------