Skip to content

Commit 7e37b59

Browse files
Add Fetch URDF description
1 parent 85a490e commit 7e37b59

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
@@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
88

99
- Description: ANYmal B MJCF
1010
- Description: ANYmal C MJCF
11+
- Description: Fetch
1112
- Description: Go1
1213
- Description: Laikago MJCF
1314
- Description: Panda MJCF

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ Available robot descriptions ([gallery](https://github.com/robot-descriptions/aw
103103
| Crazyflie 2.0 | Bitcraze | URDF | `cf2_description` |
104104
| Double Pendulum | N/A | URDF | `double_pendulum_description` |
105105
| e.DO | Comau | URDF | `edo_description` |
106+
| Fetch | Fetch Robotics | URDF | `fetch_description` |
106107
| FingerEdu | N/A | URDF | `finger_edu_description` |
107108
| Gen2 | Kinova | URDF | `gen2_description` |
108109
| Go1 | UNITREE Robotics | MJCF, URDF | `go1_description` |

robot_descriptions/_description_names.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"cf2_description",
3838
"double_pendulum_description",
3939
"edo_description",
40+
"fetch_description",
4041
"finger_edu_description",
4142
"gen2_description",
4243
"go1_description",
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+
Fetch 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", "fetch")
29+
30+
MESHES_PATH: str = _path.join(PACKAGE_PATH, "meshes")
31+
32+
URDF_PATH: str = _path.join(PACKAGE_PATH, "robots", "fetch.urdf")

0 commit comments

Comments
 (0)