├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── example_pyshot.py ├── include ├── mesh.h └── shot_descriptor.h ├── pyshot.pyx ├── setup.py ├── src ├── main.cpp └── shot_descriptor.cpp └── tests ├── __pycache__ └── test_descriptors.cpython-39-pytest-6.2.5.pyc └── test_descriptors.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/README.md -------------------------------------------------------------------------------- /example_pyshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/example_pyshot.py -------------------------------------------------------------------------------- /include/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/include/mesh.h -------------------------------------------------------------------------------- /include/shot_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/include/shot_descriptor.h -------------------------------------------------------------------------------- /pyshot.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/pyshot.pyx -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/setup.py -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/shot_descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/src/shot_descriptor.cpp -------------------------------------------------------------------------------- /tests/__pycache__/test_descriptors.cpython-39-pytest-6.2.5.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/tests/__pycache__/test_descriptors.cpython-39-pytest-6.2.5.pyc -------------------------------------------------------------------------------- /tests/test_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uhlmanngroup/pyshot/HEAD/tests/test_descriptors.py --------------------------------------------------------------------------------