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: Stretch 3 (MJCF) (thanks to @kevinzakka )
1718- Description: Shadow DEX-EE (MJCF) (thanks to @kevinzakka )
1819- Description: KUKA iiwa 7 (URDF)
1920- 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.
240240| ` reachy_description ` | Reachy | Pollen Robotics | 21 | URDF |
241241| ` stretch_description ` | Stretch RE1 | Hello Robot | 14 | URDF |
242242| ` sretch_mj_description ` | Stretch 2 | Hello Robot | 14 | MJCF |
243+ | ` sretch_3_mj_description ` | Stretch 3 | Hello Robot | 14 | MJCF |
243244| ` tiago_description ` | TIAGo | PAL Robotics | 48 | URDF |
244245
245246### 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