├── .gitignore ├── README.md ├── index.js ├── package.json └── test ├── check_halt.js ├── check_hits.js ├── check_shallow.js └── check_sphere.js /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/fast-voxel-raycast/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/fast-voxel-raycast/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/fast-voxel-raycast/HEAD/package.json -------------------------------------------------------------------------------- /test/check_halt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/fast-voxel-raycast/HEAD/test/check_halt.js -------------------------------------------------------------------------------- /test/check_hits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/fast-voxel-raycast/HEAD/test/check_hits.js -------------------------------------------------------------------------------- /test/check_shallow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/fast-voxel-raycast/HEAD/test/check_shallow.js -------------------------------------------------------------------------------- /test/check_sphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/fast-voxel-raycast/HEAD/test/check_sphere.js --------------------------------------------------------------------------------