Skip to content

Commit 8d8a045

Browse files
Add YuMi description
1 parent 972b3e6 commit 8d8a045

File tree

4 files changed

+35
-0
lines changed

4 files changed

+35
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file.
1717
- Description: Robotiq 2F-85 MJCF
1818
- Description: Shadow Hand MJCF
1919
- Description: UR5e MJCF
20+
- Description: YuMi
2021
- Loader: Pinocchio
2122
- Unit test fixture for loaders
2223

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Available robot descriptions ([gallery](https://github.com/robot-descriptions/aw
133133
| UR3 | Universal Robots | URDF | `ur3_description` |
134134
| UR5 | Universal Robots | URDF | `ur5_description` |
135135
| UR5e | Universal Robots | MJCF | `ur5e_mj_description` |
136+
| YuMi | ABB | URDF | `yumi_description` |
136137

137138
New robot descriptions are welcome! Check out the [guidelines](https://github.com/stephane-caron/robot_descriptions.py/tree/master/CONTRIBUTING.md) then open a PR.
138139

robot_descriptions/_description_names.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,5 @@
6767
"ur3_description",
6868
"ur5_description",
6969
"ur5e_mj_description",
70+
"yumi_description",
7071
]
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Copyright 2022 Stéphane Caron
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
18+
"""
19+
YuMi description.
20+
"""
21+
22+
from os import path as _path
23+
24+
from ._cache import clone_to_cache as _clone_to_cache
25+
26+
REPOSITORY_PATH: str = _clone_to_cache("robot-assets")
27+
28+
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "urdfs", "robots", "yumi")
29+
30+
MESHES_PATH: str = _path.join(PACKAGE_PATH, "meshes")
31+
32+
URDF_PATH: str = _path.join(PACKAGE_PATH, "yumi.urdf")

0 commit comments

Comments
 (0)