├── .gitignore ├── .travis.yml ├── README.rst ├── example ├── add_floor.py ├── example1.py ├── example2.py ├── image.png ├── octomap_viewer.py └── test.bt ├── octomap ├── dynamicEDT3D_defs.pxd ├── include_and_setting.h ├── octomap.pyx └── octomap_defs.pxd ├── setup.py └── test ├── octomap_test.py └── test.bt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/README.rst -------------------------------------------------------------------------------- /example/add_floor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/example/add_floor.py -------------------------------------------------------------------------------- /example/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/example/example1.py -------------------------------------------------------------------------------- /example/example2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/example/example2.py -------------------------------------------------------------------------------- /example/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/example/image.png -------------------------------------------------------------------------------- /example/octomap_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/example/octomap_viewer.py -------------------------------------------------------------------------------- /example/test.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/example/test.bt -------------------------------------------------------------------------------- /octomap/dynamicEDT3D_defs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/octomap/dynamicEDT3D_defs.pxd -------------------------------------------------------------------------------- /octomap/include_and_setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/octomap/include_and_setting.h -------------------------------------------------------------------------------- /octomap/octomap.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/octomap/octomap.pyx -------------------------------------------------------------------------------- /octomap/octomap_defs.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/octomap/octomap_defs.pxd -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/setup.py -------------------------------------------------------------------------------- /test/octomap_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/test/octomap_test.py -------------------------------------------------------------------------------- /test/test.bt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neka-nat/python-octomap/HEAD/test/test.bt --------------------------------------------------------------------------------