├── .gitignore ├── README.md ├── bsphere.h ├── images └── bounding_spheres.png └── tests └── test_bsphere.c /.gitignore: -------------------------------------------------------------------------------- 1 | vs/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scullion/bsphere/HEAD/README.md -------------------------------------------------------------------------------- /bsphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scullion/bsphere/HEAD/bsphere.h -------------------------------------------------------------------------------- /images/bounding_spheres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scullion/bsphere/HEAD/images/bounding_spheres.png -------------------------------------------------------------------------------- /tests/test_bsphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scullion/bsphere/HEAD/tests/test_bsphere.c --------------------------------------------------------------------------------