File tree Expand file tree Collapse file tree 5 files changed +40
-0
lines changed
Expand file tree Collapse file tree 5 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
99- A1
1010- Aliengo
1111- Allegro Hand
12+ - ANYmal B
1213- Atlas
1314- Baxter
1415- Bolt
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ Available robot descriptions ([gallery](https://github.com/stephane-caron/awesom
5252| A1 | Unitree Robotics | ` a1_description ` |
5353| Aliengo | Unitree Robotics | ` aliengo_description ` |
5454| Allegro Hand | Wonik Robotics | ` allegro_hand_description ` |
55+ | ANYmal B | ANYbotics | ` anymal_b_description ` |
5556| Atlas | Boston Dynamics | ` atlas_description ` |
5657| Baxter | Rethink Robotics | ` baxter_description ` |
5758| Bolt | ODRI | ` bolt_description ` |
Original file line number Diff line number Diff line change 2525 "a1_description" ,
2626 "aliengo_description" ,
2727 "allegro_hand_description" ,
28+ "anymal_b_description" ,
2829 "atlas_description" ,
2930 "baxter_description" ,
3031 "bolt_description" ,
Original file line number Diff line number Diff line change @@ -40,6 +40,11 @@ class Repository:
4040
4141
4242REPOSITORIES = {
43+ "anymal_b_simple_description" : Repository (
44+ url = "https://github.com/ANYbotics/anymal_b_simple_description.git" ,
45+ commit = "988b5df22b84761bdf08111b1c2ccc883793f456" ,
46+ cache_path = "ANYbotics/anymal_b_simple_description" ,
47+ ),
4348 "baxter_common" : Repository (
4449 url = "https://github.com/RethinkRobotics/baxter_common.git" ,
4550 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+ # 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 B 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_b_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" )
You can’t perform that action at this time.
0 commit comments