File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
1414
1515### Added
1616
17+ - Description: Shadow DEX-EE (MJCF) (thanks to @kevinzakka )
1718- Description: KUKA iiwa 7 (URDF)
1819- Description: Unitree G1 (MJCF) (thanks to @kevinzakka )
1920- Description: Unitree G1 (URDF) (thanks to @lvjonok )
Original file line number Diff line number Diff line change @@ -202,6 +202,7 @@ The DOF column denotes the number of actuated degrees of freedom.
202202| ` barrett_hand_description ` | BarrettHand | Barrett Technology | 8 | URDF |
203203| ` robotiq_2f85_description ` | Robotiq 2F-85 | Robotiq | 1 | URDF |
204204| ` robotiq_2f85_mj_description ` | Robotiq 2F-85 | Robotiq | 1 | MJCF |
205+ | ` shadow_dexee_mj_description ` | Shadow DEX-EE | The Shadow Robot Company | 12 | MJCF |
205206| ` shadow_hand_mj_description ` | Shadow Hand | The Shadow Robot Company | 24 | MJCF |
206207
207208### Humanoids
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python3
2+ # -*- coding: utf-8 -*-
3+ #
4+ # SPDX-License-Identifier: Apache-2.0
5+
6+ """Shadow DEX-EE MJCF description."""
7+
8+ from os import getenv as _getenv
9+ from os import path as _path
10+
11+ from ._cache import clone_to_cache as _clone_to_cache
12+
13+ REPOSITORY_PATH : str = _clone_to_cache (
14+ "mujoco_menagerie" ,
15+ commit = _getenv ("ROBOT_DESCRIPTION_COMMIT" , None ),
16+ )
17+
18+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH , "shadow_dexee" )
19+
20+ MJCF_PATH : str = _path .join (PACKAGE_PATH , "shadow_dexee.xml" )
You can’t perform that action at this time.
0 commit comments