File tree Expand file tree Collapse file tree 6 files changed +39
-1
lines changed
Expand file tree Collapse file tree 6 files changed +39
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
77### Added
88
99- Description: Kinova Gen3
10+ - Description: NEXTAGE
1011
1112### Changed
1213
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ Available robot descriptions ([gallery](https://github.com/robot-descriptions/aw
137137| Laikago | UNITREE Robotics | MJCF, URDF | ` laikago_description ` |
138138| Mini Cheetah | MIT | URDF | ` mini_cheetah_description ` |
139139| Minitaur | Ghost Robotics | URDF | ` minitaur_description ` |
140+ | NEXTAGE | Kawada Robotics | URDF | ` nextage_description ` |
140141| Panda | Franka Emika | MJCF | ` panda_mj_description ` |
141142| Panda | Franka Emika | URDF | ` panda_description ` |
142143| Pepper | SoftBank Robotics | URDF | ` pepper_description ` |
Original file line number Diff line number Diff line change 1919Import open source robot description as Python modules.
2020"""
2121
22- __version__ = "0.6.0 "
22+ __version__ = "0.7.0rc0 "
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ def has_urdf(self) -> bool:
105105 "laikago_description" : Description (Format .URDF ),
106106 "mini_cheetah_description" : Description (Format .URDF ),
107107 "minitaur_description" : Description (Format .URDF ),
108+ "nextage_description" : Description (Format .URDF ),
108109 "panda_description" : Description (Format .URDF ),
109110 "panda_mj_description" : Description (Format .MJCF ),
110111 "pepper_description" : Description (Format .URDF ),
Original file line number Diff line number Diff line change @@ -186,6 +186,11 @@ class Repository:
186186 commit = "0.1.5" ,
187187 cache_path = "romeo_robot" ,
188188 ),
189+ "rtmros_nextage" : Repository (
190+ url = "https://github.com/tork-a/rtmros_nextage.git" ,
191+ commit = "ac270fb969fa54abeb6863f9b388a9e20c1f14e0" ,
192+ cache_path = "rtmros_nextage" ,
193+ ),
189194 "simple_humanoid_description" : Repository (
190195 url = "https://github.com/laas/simple_humanoid_description.git" ,
191196 commit = "v1.1.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+ NEXTAGE 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 ("rtmros_nextage" )
27+
28+ PACKAGE_PATH : str = _path .join (REPOSITORY_PATH , "nextage_description" )
29+
30+ URDF_PATH : str = _path .join (PACKAGE_PATH , "urdf" , "NextageOpen.urdf" )
You can’t perform that action at this time.
0 commit comments