-
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.
- Loading branch information
1 parent
9d13275
commit b3a465d
Showing
5 changed files
with
34 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,25 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# Copyright 2022 Stéphane Caron | ||
|
||
"""SO-ARM100 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( | ||
"SO-ARM100", | ||
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None), | ||
) | ||
|
||
PACKAGE_PATH: str = _path.join( | ||
REPOSITORY_PATH, "URDF", "SO_5DOF_ARM100_8j_URDF.SLDASM" | ||
) | ||
|
||
URDF_PATH: str = _path.join( | ||
PACKAGE_PATH, "urdf", "SO_5DOF_ARM100_8j_URDF.SLDASM.urdf" | ||
) |