├── .gitignore ├── LICENSE ├── README.md ├── demo.png ├── make_vc2010.bat └── src ├── CMakeLists.txt ├── main.cpp ├── utils.cpp └── utils.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | vc2010/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/polygon-intersection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/polygon-intersection/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/polygon-intersection/HEAD/demo.png -------------------------------------------------------------------------------- /make_vc2010.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/polygon-intersection/HEAD/make_vc2010.bat -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/polygon-intersection/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/polygon-intersection/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/polygon-intersection/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abreheret/polygon-intersection/HEAD/src/utils.hpp --------------------------------------------------------------------------------