├── .gitignore ├── CMakeLists.txt ├── README.md ├── include └── quickhull.hpp ├── src ├── quickhull.cpp ├── randombox.cpp └── simple_use.cpp └── test ├── bad_samples.bash ├── bad_samples.txt ├── bad_samples_v2.sh ├── qprof.sh ├── ray_plane_intersect.m └── samples ├── crush0.txt ├── float_complanar_facets0.txt └── nf5.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/README.md -------------------------------------------------------------------------------- /include/quickhull.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/include/quickhull.hpp -------------------------------------------------------------------------------- /src/quickhull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/src/quickhull.cpp -------------------------------------------------------------------------------- /src/randombox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/src/randombox.cpp -------------------------------------------------------------------------------- /src/simple_use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/src/simple_use.cpp -------------------------------------------------------------------------------- /test/bad_samples.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/test/bad_samples.bash -------------------------------------------------------------------------------- /test/bad_samples.txt: -------------------------------------------------------------------------------- 1 | rbox D10 s t1454653399 30 2 | -------------------------------------------------------------------------------- /test/bad_samples_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/test/bad_samples_v2.sh -------------------------------------------------------------------------------- /test/qprof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/test/qprof.sh -------------------------------------------------------------------------------- /test/ray_plane_intersect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/test/ray_plane_intersect.m -------------------------------------------------------------------------------- /test/samples/crush0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/test/samples/crush0.txt -------------------------------------------------------------------------------- /test/samples/float_complanar_facets0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/test/samples/float_complanar_facets0.txt -------------------------------------------------------------------------------- /test/samples/nf5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomilov/quickhull/HEAD/test/samples/nf5.txt --------------------------------------------------------------------------------