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 @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
8
8
9
9
- Description: AgileX PiPER (MJCF)
10
10
- Description: AgileX PiPER (URDF)
11
+ - Description: ANYmal D
11
12
- Description: Robot Soccer Kit
12
13
- Description: Robotiq 2F-85 (MJCF V4) (thanks to @peterdavidfagan )
13
14
- CLI: Add ` show_in_meshcat ` command
Original file line number Diff line number Diff line change @@ -268,6 +268,7 @@ The DOF column denotes the number of actuated degrees of freedom.
268
268
| ` anymal_b_mj_description ` | ANYmal B | ANYbotics | 12 | MJCF |
269
269
| ` anymal_c_description ` | ANYmal C | ANYbotics | 12 | URDF |
270
270
| ` anymal_c_mj_description ` | ANYmal C | ANYbotics | 12 | MJCF |
271
+ | ` anymal_d_description ` | ANYmal D | ANYbotics | 12 | URDF |
271
272
| ` b1_description ` | B1 | UNITREE Robotics | 12 | URDF |
272
273
| ` b2_description ` | B2 | UNITREE Robotics | 12 | URDF |
273
274
| ` spot_mj_description ` | Spot | Boston Dynamics | 12 | MJCF |
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