├── .github └── workflows │ └── node.yml ├── .gitignore ├── LICENSE ├── README.md ├── bench.js ├── compile.js ├── eslint.config.js ├── index.d.ts ├── index.js ├── package.json ├── predicates.png ├── rollup.config.js ├── src ├── incircle.js ├── insphere.js ├── orient2d.js ├── orient3d.js └── util.js └── test ├── fixtures ├── README.md ├── incircle.txt ├── insphere.txt ├── orient2d.txt └── orient3d.txt └── test.js /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | esm/ 4 | umd/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/README.md -------------------------------------------------------------------------------- /bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/bench.js -------------------------------------------------------------------------------- /compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/compile.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/package.json -------------------------------------------------------------------------------- /predicates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/predicates.png -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/incircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/src/incircle.js -------------------------------------------------------------------------------- /src/insphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/src/insphere.js -------------------------------------------------------------------------------- /src/orient2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/src/orient2d.js -------------------------------------------------------------------------------- /src/orient3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/src/orient3d.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/src/util.js -------------------------------------------------------------------------------- /test/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/test/fixtures/README.md -------------------------------------------------------------------------------- /test/fixtures/incircle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/test/fixtures/incircle.txt -------------------------------------------------------------------------------- /test/fixtures/insphere.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/test/fixtures/insphere.txt -------------------------------------------------------------------------------- /test/fixtures/orient2d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/test/fixtures/orient2d.txt -------------------------------------------------------------------------------- /test/fixtures/orient3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/test/fixtures/orient3d.txt -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mourner/robust-predicates/HEAD/test/test.js --------------------------------------------------------------------------------