We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1db3c75 commit 614642cCopy full SHA for 614642c
robot_descriptions/tiago_pro_mj_description.py
@@ -0,0 +1,20 @@
1
+#!/usr/bin/env python3
2
+# -*- coding: utf-8 -*-
3
+#
4
+# SPDX-License-Identifier: Apache-2.0
5
+
6
+"""PAL Tiago dual description."""
7
8
+from os import getenv as _getenv
9
+from os import path as _path
10
11
+from ._cache import clone_to_cache as _clone_to_cache
12
13
+REPOSITORY_PATH: str = _clone_to_cache(
14
+ "mujoco_menagerie",
15
+ commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
16
+)
17
18
+PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "pal_tiago_dual")
19
20
+MJCF_PATH: str = _path.join(PACKAGE_PATH, "tiago_dual_position.xml")
0 commit comments