File tree 5 files changed +29
-0
lines changed
5 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ All notable changes to this project will be documented in this file.
6
6
7
7
### Added
8
8
9
+ - Description: ANYmal D
9
10
- Description: LEAP Hand v1
10
11
- Description: Shadow DEX-EE (MJCF) (thanks to @kevinzakka )
11
12
- Description: Stretch 3 (MJCF) (thanks to @kevinzakka )
Original file line number Diff line number Diff line change @@ -256,6 +256,7 @@ The DOF column denotes the number of actuated degrees of freedom.
256
256
| ` anymal_b_mj_description ` | ANYmal B | ANYbotics | 12 | MJCF |
257
257
| ` anymal_c_description ` | ANYmal C | ANYbotics | 12 | URDF |
258
258
| ` anymal_c_mj_description ` | ANYmal C | ANYbotics | 12 | MJCF |
259
+ | ` anymal_d_description ` | ANYmal D | ANYbotics | 12 | URDF |
259
260
| ` b1_description ` | B1 | UNITREE Robotics | 12 | URDF |
260
261
| ` spot_mj_description ` | Spot | Boston Dynamics | 12 | MJCF |
261
262
| ` go1_description ` | Go1 | UNITREE Robotics | 12 | URDF |
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ def has_urdf(self) -> bool:
59
59
"anymal_b_mj_description" : Description (Format .MJCF ),
60
60
"anymal_c_description" : Description (Format .URDF ),
61
61
"anymal_c_mj_description" : Description (Format .MJCF ),
62
+ "anymal_d_description" : Description (Format .URDF ),
62
63
"atlas_drc_description" : Description (Format .URDF ),
63
64
"atlas_v4_description" : Description (Format .URDF ),
64
65
"b1_description" : Description (Format .URDF ),
Original file line number Diff line number Diff line change @@ -36,6 +36,11 @@ class Repository:
36
36
commit = "f160b8f7fed840c47a6febe8e2bc78b32bf43a68" ,
37
37
cache_path = "anymal_c_simple_description" ,
38
38
),
39
+ "anymal_d_simple_description" : Repository (
40
+ url = "https://github.com/ANYbotics/anymal_d_simple_description.git" ,
41
+ commit = "6adc14720aab583613975e5a9d6d4fa3cfcdd081" ,
42
+ cache_path = "anymal_d_simple_description" ,
43
+ ),
39
44
"baxter_common" : Repository (
40
45
url = "https://github.com/RethinkRobotics/baxter_common.git" ,
41
46
commit = "v1.2.0" ,
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
+ # Copyright 2024 Inria
6
+
7
+ """ANYmal D description."""
8
+
9
+ from os import getenv as _getenv
10
+ from os import path as _path
11
+
12
+ from ._cache import clone_to_cache as _clone_to_cache
13
+
14
+ REPOSITORY_PATH : str = _clone_to_cache (
15
+ "anymal_d_simple_description" ,
16
+ commit = _getenv ("ROBOT_DESCRIPTION_COMMIT" , None ),
17
+ )
18
+
19
+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH )
20
+
21
+ URDF_PATH : str = _path .join (PACKAGE_PATH , "urdf" , "anymal.urdf" )
You can’t perform that action at this time.
0 commit comments