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 @@ -23,6 +23,7 @@ All notable changes to this project will be documented in this file.
2323- iCub
2424- iiwa 14
2525- JVRC-1
26+ - Minitaur
2627- Panda
2728- PR2
2829- Reachy
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ Available robot descriptions ([gallery](https://github.com/stephane-caron/awesom
6666| iCub | IIT | ` icub_description ` |
6767| iiwa | KUKA | ` iiwa_description ` |
6868| JVRC-1 | AIST | ` jvrc_description ` |
69+ | Minitaur | Ghost Robotics | ` minitaur_description ` |
6970| Panda | Franka Emika | ` panda_description ` |
7071| PR2 | Willow Garage | ` pr2_description ` |
7172| Reachy | Pollen Robotics | ` reachy_description ` |
Original file line number Diff line number Diff line change 3939 "icub_description" ,
4040 "iiwa_description" ,
4141 "jvrc_description" ,
42+ "minitaur_description" ,
4243 "panda_description" ,
4344 "pr2_description" ,
4445 "reachy_description" ,
Original file line number Diff line number Diff line change @@ -55,6 +55,11 @@ class Repository:
5555 commit = "v1.2.0" ,
5656 cache_path = "RethinkRobotics/baxter_common" ,
5757 ),
58+ "bullet3" : Repository (
59+ url = "https://github.com/bulletphysics/bullet3.git" ,
60+ commit = "3.24" ,
61+ cache_path = "bulletphysics/bullet3" ,
62+ ),
5863 "cassie_description" : Repository (
5964 url = "https://github.com/UMich-BipedLab/cassie_description.git" ,
6065 commit = "96323f3d0cc2cb7101cb92d7fcf4650abdcb2e81" ,
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+ Minitaur 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 ("bullet3" )
27+
28+ PATH : str = _path .join (__working_dir__ , "data" , "quadruped" )
29+
30+ MESHES_PATH : str = _path .join (PATH )
31+
32+ URDF_PATH : str = _path .join (PATH , "minitaur.urdf" )
You can’t perform that action at this time.
0 commit comments