├── .gitignore ├── .gitmodules ├── Bullet_URDF_Exporter ├── Bullet_URDF_Exporter.manifest ├── Bullet_URDF_Exporter.py ├── core │ ├── Joint.py │ ├── Link.py │ ├── Write.py │ └── __init__.py └── utils │ ├── __init__.py │ └── utils.py ├── LICENSE ├── README.md ├── README.zh.md ├── _config.yml └── imgs ├── 1_plugin.png ├── 2_script.png ├── 3_success.png ├── 4_close.png ├── 5_files.png ├── 6_debug.PNG ├── Error1.PNG ├── Error2.PNG ├── Error_graphviz1.png └── Error_graphviz2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/.gitmodules -------------------------------------------------------------------------------- /Bullet_URDF_Exporter/Bullet_URDF_Exporter.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/Bullet_URDF_Exporter/Bullet_URDF_Exporter.manifest -------------------------------------------------------------------------------- /Bullet_URDF_Exporter/Bullet_URDF_Exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/Bullet_URDF_Exporter/Bullet_URDF_Exporter.py -------------------------------------------------------------------------------- /Bullet_URDF_Exporter/core/Joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/Bullet_URDF_Exporter/core/Joint.py -------------------------------------------------------------------------------- /Bullet_URDF_Exporter/core/Link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/Bullet_URDF_Exporter/core/Link.py -------------------------------------------------------------------------------- /Bullet_URDF_Exporter/core/Write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/Bullet_URDF_Exporter/core/Write.py -------------------------------------------------------------------------------- /Bullet_URDF_Exporter/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bullet_URDF_Exporter/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bullet_URDF_Exporter/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/Bullet_URDF_Exporter/utils/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/README.zh.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/_config.yml -------------------------------------------------------------------------------- /imgs/1_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/1_plugin.png -------------------------------------------------------------------------------- /imgs/2_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/2_script.png -------------------------------------------------------------------------------- /imgs/3_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/3_success.png -------------------------------------------------------------------------------- /imgs/4_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/4_close.png -------------------------------------------------------------------------------- /imgs/5_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/5_files.png -------------------------------------------------------------------------------- /imgs/6_debug.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/6_debug.PNG -------------------------------------------------------------------------------- /imgs/Error1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/Error1.PNG -------------------------------------------------------------------------------- /imgs/Error2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/Error2.PNG -------------------------------------------------------------------------------- /imgs/Error_graphviz1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/Error_graphviz1.png -------------------------------------------------------------------------------- /imgs/Error_graphviz2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshil/Fusion2PyBullet/HEAD/imgs/Error_graphviz2.png --------------------------------------------------------------------------------