├── .gitignore ├── LICENSE ├── README.md ├── example.urdf ├── pyproject.toml ├── setup.py └── src └── rerun_loader_urdf ├── __init__.py └── _ros_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerun-io/rerun-loader-python-example-urdf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerun-io/rerun-loader-python-example-urdf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerun-io/rerun-loader-python-example-urdf/HEAD/README.md -------------------------------------------------------------------------------- /example.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerun-io/rerun-loader-python-example-urdf/HEAD/example.urdf -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerun-io/rerun-loader-python-example-urdf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerun-io/rerun-loader-python-example-urdf/HEAD/setup.py -------------------------------------------------------------------------------- /src/rerun_loader_urdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerun-io/rerun-loader-python-example-urdf/HEAD/src/rerun_loader_urdf/__init__.py -------------------------------------------------------------------------------- /src/rerun_loader_urdf/_ros_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rerun-io/rerun-loader-python-example-urdf/HEAD/src/rerun_loader_urdf/_ros_utils.py --------------------------------------------------------------------------------