gitextract_3w42ou2q/ ├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .bazelversion.license ├── .buildifier.json ├── .buildifier.json.license ├── .clang-format ├── .clang-tidy ├── .devcontainer/ │ ├── devcontainer.json │ └── devcontainer.json.license ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── SECURITY.md │ ├── SUPPORT.md │ └── workflows/ │ ├── ci.yml │ └── codeql.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode/ │ ├── extensions.json │ ├── extensions.json.license │ ├── settings.json │ └── settings.json.license ├── .yamllint.yaml ├── .zenodo.json ├── .zenodo.json.license ├── BUILD.bazel ├── Brewfile ├── CITATION.cff ├── CMakeLists.txt ├── CMakePresets.json ├── CMakePresets.json.license ├── CPPLINT.cfg ├── CTestConfig.cmake ├── Dockerfile ├── LICENSE ├── LICENSES/ │ ├── Apache-2.0.txt │ ├── CC-BY-4.0.txt │ ├── CC-BY-SA-4.0.txt │ └── CC0-1.0.txt ├── MODULE.bazel ├── QUALITY_DECLARATION.md ├── README.md ├── RVO3D.pc.in ├── RVO3DConfig.cmake.in ├── compose.yaml ├── doc/ │ ├── CMakeLists.txt │ ├── footer.html │ ├── footer.html.license │ ├── header.html │ ├── header.html.license │ └── stylesheet.css ├── examples/ │ ├── BUILD.bazel │ ├── CMakeLists.txt │ └── Sphere.cc ├── include-what-you-use.imp ├── include-what-you-use.imp.license ├── package.xml ├── renovate.json ├── renovate.json.license ├── requirements.txt ├── src/ │ ├── Agent.cc │ ├── Agent.h │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── KdTree.cc │ ├── KdTree.h │ ├── Plane.cc │ ├── Plane.h │ ├── RVO.h │ ├── RVOSimulator.cc │ ├── RVOSimulator.h │ ├── Vector3.cc │ └── Vector3.h └── triggers