├── .gitignore ├── .npmignore ├── LICENSE.txt ├── README.md ├── bench.js ├── demo ├── 2d.js └── raytracer.js ├── package.json ├── ray-aabb.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | v8.log 3 | s.js 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | v8.log 2 | s.js 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpvar/ray-aabb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpvar/ray-aabb/HEAD/README.md -------------------------------------------------------------------------------- /bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpvar/ray-aabb/HEAD/bench.js -------------------------------------------------------------------------------- /demo/2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpvar/ray-aabb/HEAD/demo/2d.js -------------------------------------------------------------------------------- /demo/raytracer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpvar/ray-aabb/HEAD/demo/raytracer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpvar/ray-aabb/HEAD/package.json -------------------------------------------------------------------------------- /ray-aabb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpvar/ray-aabb/HEAD/ray-aabb.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmpvar/ray-aabb/HEAD/test.js --------------------------------------------------------------------------------