File tree Expand file tree Collapse file tree 4 files changed +40
-1
lines changed Expand file tree Collapse file tree 4 files changed +40
-1
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,11 @@ All notable changes to this project will be documented in this file.
6
6
7
7
### Added
8
8
9
- - Description: Atlas v4
10
9
- Description: ANYmal B MJCF
11
10
- Description: ANYmal C MJCF
11
+ - Description: Atlas v4
12
12
- Description: Fetch
13
+ - Description: Ginger
13
14
- Description: Go1
14
15
- Description: Laikago MJCF
15
16
- Description: Panda MJCF
Original file line number Diff line number Diff line change @@ -107,6 +107,7 @@ Available robot descriptions ([gallery](https://github.com/robot-descriptions/aw
107
107
| Fetch | Fetch Robotics | URDF | ` fetch_description ` |
108
108
| FingerEdu | N/A | URDF | ` finger_edu_description ` |
109
109
| Gen2 | Kinova | URDF | ` gen2_description ` |
110
+ | Ginger | Paaila Technology | URDF | ` ginger_description ` |
110
111
| Go1 | UNITREE Robotics | MJCF, URDF | ` go1_description ` |
111
112
| HyQ | IIT | URDF | ` hyq_description ` |
112
113
| iCub | IIT | URDF | ` icub_description ` |
Original file line number Diff line number Diff line change @@ -85,6 +85,11 @@ class Repository:
85
85
commit = "v4.0.1" ,
86
86
cache_path = "Gepetto/example-robot-data" ,
87
87
),
88
+ "GingerURDF" : Repository (
89
+ url = "https://github.com/Rayckey/GingerURDF.git" ,
90
+ commit = "6a1307cd0ee2b77c82f8839cdce3a2e2eed2bd8f" ,
91
+ cache_path = "Rayckey/GingerURDF" ,
92
+ ),
88
93
"gym-pybullet-drones" : Repository (
89
94
url = "https://github.com/utiasDSL/gym-pybullet-drones.git" ,
90
95
commit = "v1.0.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
+ Ginger 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 ("GingerURDF" )
27
+
28
+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH )
29
+
30
+ MESHES_PATH : str = _path .join (PACKAGE_PATH , "meshes" )
31
+
32
+ URDF_PATH : str = _path .join (PACKAGE_PATH , "urdf" , "gingerurdf.urdf" )
You can’t perform that action at this time.
0 commit comments