File tree 3 files changed +22
-0
lines changed
3 files changed +22
-0
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: Stretch 3 (MJCF) (thanks to @kevinzakka )
11
12
- Description: Shadow DEX-EE (MJCF) (thanks to @kevinzakka )
12
13
- Description: KUKA iiwa 7 (URDF)
13
14
- Description: Unitree G1 (MJCF) (thanks to @kevinzakka )
Original file line number Diff line number Diff line change @@ -240,6 +240,7 @@ The DOF column denotes the number of actuated degrees of freedom.
240
240
| ` reachy_description ` | Reachy | Pollen Robotics | 21 | URDF |
241
241
| ` stretch_description ` | Stretch RE1 | Hello Robot | 14 | URDF |
242
242
| ` sretch_mj_description ` | Stretch 2 | Hello Robot | 14 | MJCF |
243
+ | ` sretch_3_mj_description ` | Stretch 3 | Hello Robot | 14 | MJCF |
243
244
| ` tiago_description ` | TIAGo | PAL Robotics | 48 | URDF |
244
245
245
246
### Quadrupeds
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
+ """Stretch 3 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 , "hello_robot_stretch_3" )
19
+
20
+ MJCF_PATH : str = _path .join (PACKAGE_PATH , "stretch.xml" )
You can’t perform that action at this time.
0 commit comments