-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PAL Talos MJCF description from Menagerie.
- Loading branch information
1 parent
09af184
commit c246e88
Showing
5 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
"""PAL Talos description.""" | ||
|
||
from os import getenv as _getenv | ||
from os import path as _path | ||
|
||
from ._cache import clone_to_cache as _clone_to_cache | ||
|
||
REPOSITORY_PATH: str = _clone_to_cache( | ||
"mujoco_menagerie", | ||
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None), | ||
) | ||
|
||
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "pal_talos") | ||
|
||
MJCF_PATH: str = _path.join(PACKAGE_PATH, "talos_position.xml") |