-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f24388
commit 076ca02
Showing
5 changed files
with
41 additions
and
11 deletions.
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,21 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright 2024 Inria | ||
|
||
"""LEAP hand v1 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( | ||
"LEAP_Hand_Sim", | ||
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None), | ||
) | ||
|
||
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "assets", "leap_hand") | ||
|
||
URDF_PATH: str = _path.join(PACKAGE_PATH, "robot.urdf") |