Skip to content

Commit

Permalink
Merge pull request #25 from traversaro/fixreadme
Browse files Browse the repository at this point in the history
Avoid gym_ignition_models references in README
  • Loading branch information
Giulero authored Jul 26, 2022
2 parents 94b3bc1 + 58e62e8 commit c5bdd34
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ Have also a look at te `tests` folder.

```python
from adam.jax import KinDynComputations
import gym_ignition_models
import icub_models
import numpy as np
# if you want to use gym-ignition https://github.com/robotology/gym-ignition to retrieve the urdf
model_path = gym_ignition_models.get_model_file("iCubGazeboV2_5")
# if you want to icub-models https://github.com/robotology/icub-models to retrieve the urdf
model_path = icub_models.get_model_file("iCubGazeboV2_5")
# The joint list
joints_name_list = [
'torso_pitch', 'torso_roll', 'torso_yaw', 'l_shoulder_pitch',
Expand All @@ -171,11 +171,11 @@ print(M)

```python
from adam.casadi import KinDynComputations
import gym_ignition_models
import icub_models
import numpy as np
# if you want to use gym-ignition https://github.com/robotology/gym-ignition to retrieve the urdf
model_path = gym_ignition_models.get_model_file("iCubGazeboV2_5")
# if you want to icub-models https://github.com/robotology/icub-models to retrieve the urdf
model_path = icub_models.get_model_file("iCubGazeboV2_5")
# The joint list
joints_name_list = [
'torso_pitch', 'torso_roll', 'torso_yaw', 'l_shoulder_pitch',
Expand All @@ -197,11 +197,11 @@ print(M(w_H_b, joints))

```python
from adam.pytorch import KinDynComputations
import gym_ignition_models
import icub_models
import numpy as np
# if you want to use gym-ignition https://github.com/robotology/gym-ignition to retrieve the urdf
model_path = gym_ignition_models.get_model_file("iCubGazeboV2_5")
# if you want to icub-models https://github.com/robotology/icub-models to retrieve the urdf
model_path = icub_models.get_model_file("iCubGazeboV2_5")
# The joint list
joints_name_list = [
'torso_pitch', 'torso_roll', 'torso_yaw', 'l_shoulder_pitch',
Expand Down

0 comments on commit c5bdd34

Please sign in to comment.