├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bench.js ├── example.png ├── index.js ├── intersectionPseudoVertices.png ├── package.json ├── test.js └── test ├── in ├── complex.geojson ├── simple.geojson └── with-hole.geojson └── out ├── complex.geojson ├── simple.geojson └── with-hole.geojson /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/README.md -------------------------------------------------------------------------------- /bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/bench.js -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/example.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/index.js -------------------------------------------------------------------------------- /intersectionPseudoVertices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/intersectionPseudoVertices.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/test.js -------------------------------------------------------------------------------- /test/in/complex.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/test/in/complex.geojson -------------------------------------------------------------------------------- /test/in/simple.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/test/in/simple.geojson -------------------------------------------------------------------------------- /test/in/with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/test/in/with-hole.geojson -------------------------------------------------------------------------------- /test/out/complex.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/test/out/complex.geojson -------------------------------------------------------------------------------- /test/out/simple.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/test/out/simple.geojson -------------------------------------------------------------------------------- /test/out/with-hole.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mclaeysb/simplepolygon/HEAD/test/out/with-hole.geojson --------------------------------------------------------------------------------