├── requirements.txt ├── rvo2-navmesh-test.blend ├── doc ├── footer.html ├── header.html └── Doxyfile ├── .editorconfig ├── .gitignore ├── .travis.yml ├── appveyor.yml ├── example.py ├── CMakeLists.txt ├── src ├── Obstacle.cpp ├── CMakeLists.txt ├── Obstacle.h ├── Definitions.h ├── Agent.h ├── KdTree.h ├── RVOSimulator.cpp ├── rvo2.pyx ├── Vector2.h ├── KdTree.cpp ├── Agent.cpp ├── RVO.h └── RVOSimulator.h ├── CTestConfig.cmake ├── examples ├── CMakeLists.txt ├── Circle.cpp ├── Blocks.cpp └── Roadmap.cpp ├── setup.py ├── README.md └── LICENSE /requirements.txt: -------------------------------------------------------------------------------- 1 | Cython==0.21.1 2 | -------------------------------------------------------------------------------- /rvo2-navmesh-test.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sybrenstuvel/Python-RVO2/HEAD/rvo2-navmesh-test.blend -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |