Skip to content

Commit d7c29ba

Browse files
committed
Add stretch 3 mj description.
1 parent cc83bcd commit d7c29ba

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
88

99
### Added
1010

11+
- Description: Stretch 3 (MJCF) (thanks to @kevinzakka)
1112
- Description: Shadow DEX-EE (MJCF) (thanks to @kevinzakka)
1213
- Description: KUKA iiwa 7 (URDF)
1314
- Description: Unitree G1 (MJCF) (thanks to @kevinzakka)

README.md

+1
Original file line numberDiff line numberDiff 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 numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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")

0 commit comments

Comments
 (0)