Skip to content

Commit

Permalink
Modify existing kinova mj model and point to menagerie.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinzakka committed Jul 20, 2024
1 parent bb9e170 commit 0681320
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 28 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ All notable changes to this project will be documented in this file.

### Added

- Description: Kinova Gen3 (MJCF) (thanks to @kevinzakka)
### Changed

- Update repository for ``gen3_mj_description`` to ``mujoco_menagerie``

## [1.11.0] - 2024-06-27

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ The DOF column denotes the number of actuated degrees of freedom.
| `fr3_mj_description` | FR3 | Franka Robotics | 7 | MJCF |
| `gen2_description` | Gen2 (Jaco) | Kinova | 6 | URDF |
| `gen3_description` | Gen3 (Jaco) | Kinova | 6 | URDF |
| `gen3_mj_description` | Gen3 (Jaco) | Kinova | 7 | MJCF |
| `gen3_mj_description` | Gen3 | Kinova | 7 | MJCF |
| `iiwa14_description` | iiwa 14 | KUKA | 7 | URDF |
| `iiwa14_mj_description` | iiwa 14 | KUKA | 7 | MJCF |
| `iiwa7_description` | iiwa 7 | KUKA | 7 | URDF |
Expand Down
2 changes: 1 addition & 1 deletion robot_descriptions/_repositories.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class Repository:
),
"mujoco_menagerie": Repository(
url="https://github.com/deepmind/mujoco_menagerie.git",
commit="af493511dbdfce2e046858a4d2f2955e063e17fd",
commit="3d593a327ff8d5efd10f4926ccc477820e9252c1",
cache_path="mujoco_menagerie",
),
"nao_robot": Repository(
Expand Down
8 changes: 4 additions & 4 deletions robot_descriptions/gen3_mj_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright 2022 Stéphane Caron

"""Kinova Jaco Gen3 description."""
"""Kinova Gen3 MJCF 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(
"kinova_mj_description",
"mujoco_menagerie",
commit=_getenv("ROBOT_DESCRIPTION_COMMIT", None),
)

PACKAGE_PATH: str = _path.join(REPOSITORY_PATH)
PACKAGE_PATH: str = _path.join(REPOSITORY_PATH, "kinova_gen3")

MJCF_PATH: str = _path.join(PACKAGE_PATH, "xml", "gen3_7dof_mujoco.xml")
MJCF_PATH: str = _path.join(PACKAGE_PATH, "gen3.xml")
21 changes: 0 additions & 21 deletions robot_descriptions/kinova_gen3_mj_description.py

This file was deleted.

0 comments on commit 0681320

Please sign in to comment.