File tree 4 files changed +24
-1
lines changed
4 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
8
8
9
9
### Added
10
10
11
+ - Description: Shadow DEX-EE (MJCF) (thanks to @kevinzakka )
11
12
- Description: KUKA iiwa 7 (URDF)
12
13
- Description: Unitree G1 (MJCF) (thanks to @kevinzakka )
13
14
- 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.
202
202
| ` barrett_hand_description ` | BarrettHand | Barrett Technology | 8 | URDF |
203
203
| ` robotiq_2f85_description ` | Robotiq 2F-85 | Robotiq | 1 | URDF |
204
204
| ` robotiq_2f85_mj_description ` | Robotiq 2F-85 | Robotiq | 1 | MJCF |
205
+ | ` shadow_dexee_mj_description ` | Shadow DEX-EE | The Shadow Robot Company | 12 | MJCF |
205
206
| ` shadow_hand_mj_description ` | Shadow Hand | The Shadow Robot Company | 24 | MJCF |
206
207
207
208
### Humanoids
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ class Repository:
152
152
),
153
153
"mujoco_menagerie" : Repository (
154
154
url = "https://github.com/deepmind/mujoco_menagerie.git" ,
155
- commit = "3ff28577c3d5e9c63b2bf84489c45b851745b8d0 " ,
155
+ commit = "bf50a5bd3c0ae757f768893bb06d4595df8e346f " ,
156
156
cache_path = "mujoco_menagerie" ,
157
157
),
158
158
"nao_robot" : Repository (
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
+ # Copyright 2022 Stéphane Caron
6
+
7
+ """Shadow DEX-EE MJCF description."""
8
+
9
+ from os import getenv as _getenv
10
+ from os import path as _path
11
+
12
+ from ._cache import clone_to_cache as _clone_to_cache
13
+
14
+ REPOSITORY_PATH : str = _clone_to_cache (
15
+ "mujoco_menagerie" ,
16
+ commit = _getenv ("ROBOT_DESCRIPTION_COMMIT" , None ),
17
+ )
18
+
19
+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH , "shadow_dexee" )
20
+
21
+ MJCF_PATH : str = _path .join (PACKAGE_PATH , "shadow_dexee.xml" )
You can’t perform that action at this time.
0 commit comments