gitextract_m4hhryw2/ ├── .gitignore ├── .travis.yml ├── BSD-LICENSE ├── CMakeLists.txt ├── Makefile.am ├── README.md ├── bootstrap ├── ccd-config.cmake.in ├── ccd.pc.in ├── configure.ac ├── doc/ │ ├── CMakeLists.txt │ ├── Makefile │ ├── _build/ │ │ └── .dir │ ├── _static/ │ │ └── .dir │ ├── _templates/ │ │ └── .dir │ ├── compile-and-install.rst │ ├── conf.py │ ├── examples.rst │ ├── index.rst │ └── reference.rst ├── make-release.sh └── src/ ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── Makefile.am ├── Makefile.include ├── alloc.h ├── ccd/ │ ├── ccd.h │ ├── ccd_export.h │ ├── compiler.h │ ├── config.h.cmake.in │ ├── config.h.m4 │ ├── quat.h │ └── vec3.h ├── ccd.c ├── dbg.h ├── list.h ├── mpr.c ├── polytope.c ├── polytope.h ├── simplex.h ├── support.c ├── support.h ├── testsuites/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile │ ├── Makefile.am │ ├── bench.c │ ├── bench2.c │ ├── boxbox.c │ ├── boxbox.h │ ├── boxcyl.c │ ├── boxcyl.h │ ├── common.c │ ├── common.h │ ├── cu/ │ │ ├── .dir │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── check-regressions │ │ ├── cu.c │ │ ├── cu.h │ │ └── latest.sh │ ├── cylcyl.c │ ├── cylcyl.h │ ├── main.c │ ├── mpr_boxbox.c │ ├── mpr_boxbox.h │ ├── mpr_boxcyl.c │ ├── mpr_boxcyl.h │ ├── mpr_cylcyl.c │ ├── mpr_cylcyl.h │ ├── polytope.c │ ├── polytope.h │ ├── regressions/ │ │ ├── .dir │ │ ├── TSBoxBox.err │ │ ├── TSBoxBox.out │ │ ├── TSBoxCyl.err │ │ ├── TSBoxCyl.out │ │ ├── TSCylCyl.err │ │ ├── TSCylCyl.out │ │ ├── TSMPRBoxBox.err │ │ ├── TSMPRBoxBox.out │ │ ├── TSMPRBoxCyl.err │ │ ├── TSMPRBoxCyl.out │ │ ├── TSMPRCylCyl.err │ │ ├── TSMPRCylCyl.out │ │ ├── TSPt.err │ │ ├── TSPt.out │ │ ├── TSSphereSphere.err │ │ ├── TSSphereSphere.out │ │ ├── TSVec3.err │ │ └── TSVec3.out │ ├── spheresphere.c │ ├── spheresphere.h │ ├── support.c │ ├── support.h │ ├── vec3.c │ └── vec3.h └── vec3.c