Skip to content

Commit ef8f2f4

Browse files
Add ANYmal C description
1 parent d3b48d3 commit ef8f2f4

File tree

5 files changed

+40
-0
lines changed

5 files changed

+40
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file.
1010
- Aliengo
1111
- Allegro Hand
1212
- ANYmal B
13+
- ANYmal C
1314
- Atlas
1415
- Baxter
1516
- Bolt

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Available robot descriptions ([gallery](https://github.com/stephane-caron/awesom
5353
| Aliengo | Unitree Robotics | `aliengo_description` |
5454
| Allegro Hand | Wonik Robotics | `allegro_hand_description` |
5555
| ANYmal B | ANYbotics | `anymal_b_description` |
56+
| ANYmal C | ANYbotics | `anymal_c_description` |
5657
| Atlas | Boston Dynamics | `atlas_description` |
5758
| Baxter | Rethink Robotics | `baxter_description` |
5859
| Bolt | ODRI | `bolt_description` |

robot_descriptions/_description_names.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"aliengo_description",
2727
"allegro_hand_description",
2828
"anymal_b_description",
29+
"anymal_c_description",
2930
"atlas_description",
3031
"baxter_description",
3132
"bolt_description",

robot_descriptions/_repositories.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ class Repository:
4545
commit="988b5df22b84761bdf08111b1c2ccc883793f456",
4646
cache_path="ANYbotics/anymal_b_simple_description",
4747
),
48+
"anymal_c_simple_description": Repository(
49+
url="https://github.com/ANYbotics/anymal_c_simple_description.git",
50+
commit="f160b8f7fed840c47a6febe8e2bc78b32bf43a68",
51+
cache_path="ANYbotics/anymal_c_simple_description",
52+
),
4853
"baxter_common": Repository(
4954
url="https://github.com/RethinkRobotics/baxter_common.git",
5055
commit="v1.2.0",
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+
ANYmal C description.
20+
"""
21+
22+
from os import path as _path
23+
24+
from ._cache import clone_to_cache as _clone_to_cache
25+
26+
__working_dir__ = _clone_to_cache("anymal_c_simple_description")
27+
28+
PATH: str = _path.join(__working_dir__)
29+
30+
MESHES_PATH: str = _path.join(PATH, "meshes")
31+
32+
URDF_PATH: str = _path.join(PATH, "urdf", "anymal.urdf")

0 commit comments

Comments
 (0)