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 e2502f3 commit 560ab43Copy full SHA for 560ab43
robot_descriptions/rby1_mj_description.py
@@ -0,0 +1,21 @@
1
+#!/usr/bin/env python3
2
+# -*- coding: utf-8 -*-
3
+#
4
+# SPDX-License-Identifier: Apache-2.0
5
+# Copyright 2022 Stéphane Caron
6
+
7
+"""YAM URDF description."""
8
9
+from os import getenv as _getenv
10
+from os import path as _path
11
12
+from ._cache import clone_to_cache as _clone_to_cache
13
14
+REPOSITORY_PATH: str = _clone_to_cache(
15
+ "rby1_description",
16
+ commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
17
+)
18
19
+PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "models/rby1a/mujoco/assets")
20
21
+URDF_PATH: str = _path.join(REPOSITORY_PATH, "models/rby1a/mujoco/rby1.xml")
0 commit comments