├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── d3-hull.sublime-project ├── index.js ├── package.json ├── src └── hull.js └── test └── hull-test.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-workspace 2 | .DS_Store 3 | build/ 4 | node_modules 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | build/*.zip 3 | test/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-hull/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-hull/HEAD/README.md -------------------------------------------------------------------------------- /d3-hull.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-hull/HEAD/d3-hull.sublime-project -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | export {default as hull} from "./src/hull"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-hull/HEAD/package.json -------------------------------------------------------------------------------- /src/hull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-hull/HEAD/src/hull.js -------------------------------------------------------------------------------- /test/hull-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-hull/HEAD/test/hull-test.js --------------------------------------------------------------------------------