├── .flake8 ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── MANIFEST.in ├── README.md ├── examples ├── .readme │ └── insertPointCloud.jpg ├── getLabels.py └── insertPointCloud.py ├── octomap ├── dynamicEDT3D_defs.pxd ├── include_and_setting.h ├── octomap.pyx └── octomap_defs.pxd ├── pyproject.toml ├── setup.cfg ├── setup.py └── tests ├── octomap_test.py └── test.bt /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = .anaconda3/, src/ 3 | ignore = E203, 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/.gitmodules -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/README.md -------------------------------------------------------------------------------- /examples/.readme/insertPointCloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/examples/.readme/insertPointCloud.jpg -------------------------------------------------------------------------------- /examples/getLabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/examples/getLabels.py -------------------------------------------------------------------------------- /examples/insertPointCloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/examples/insertPointCloud.py -------------------------------------------------------------------------------- /octomap/dynamicEDT3D_defs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/octomap/dynamicEDT3D_defs.pxd -------------------------------------------------------------------------------- /octomap/include_and_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/octomap/include_and_setting.h -------------------------------------------------------------------------------- /octomap/octomap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/octomap/octomap.pyx -------------------------------------------------------------------------------- /octomap/octomap_defs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/octomap/octomap_defs.pxd -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude=.anaconda*,examples/legacy,tests,src 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/octomap_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/tests/octomap_test.py -------------------------------------------------------------------------------- /tests/test.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/octomap-python/HEAD/tests/test.bt --------------------------------------------------------------------------------