Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify origin of assigned collisions in simmechanics-generated Gazebo-related models for sole links after sole link frame location was changed #175

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Fixed regression in 0.3.4 that moved (in Gazebo-related models) the collision of the sole links to be higher, resulting in the `(r|l)_ankle_2` link being in contact with the ground and resulting in unstable contacts when using the models in Gazebo Classic (https://github.com/icub-tech-iit/ergocub-software/issues/174, https://github.com/icub-tech-iit/ergocub-software/issues/175)

## [0.3.4] - 2023-08-28

### urdf
Expand Down
16 changes: 8 additions & 8 deletions urdf/simmechanics/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,22 +123,22 @@ macro(generate_ergocub_simmechanics)
geometricShape:
shape: box
size: 0.117 0.100 0.006
origin: \"0.0 0.0 0.003 0.0 0.0 0.0\"
origin: \"0.0 0.0 -0.0193 0.0 0.0 0.0\"
- linkName: r_foot_rear
geometricShape:
shape: box
size: 0.117 0.100 0.006
origin: \"0.0 0.0 0.003 0.0 0.0 0.0\"
origin: \"0.0 0.0 -0.0193 0.0 0.0 0.0\"
- linkName: l_foot_front
geometricShape:
shape: box
size: 0.117 0.100 0.006
origin: \"0.0 0.0 0.003 0.0 0.0 0.0\"
origin: \"0.0 0.0 -0.0193 0.0 0.0 0.0\"
- linkName: l_foot_rear
geometricShape:
shape: box
size: 0.117 0.100 0.006
origin: \"0.0 0.0 0.003 0.0 0.0 0.0\"
origin: \"0.0 0.0 -0.0193 0.0 0.0 0.0\"
")
endif()

Expand All @@ -149,22 +149,22 @@ macro(generate_ergocub_simmechanics)
geometricShape:
shape: box
size: 0.117 0.100 0.006
origin: \"0.0 0.0 0.003 0.0 0.0 0.0\"
origin: \"0.0 0.0 -0.0193 0.0 0.0 0.0\"
- linkName: r_foot_rear
geometricShape:
shape: box
size: 0.117 0.100 0.006
origin: \"0.0 0.0 0.003 0.0 0.0 0.0\"
origin: \"0.0 0.0 -0.0193 0.0 0.0 0.0\"
- linkName: l_foot_front
geometricShape:
shape: box
size: 0.117 0.100 0.006
origin: \"0.0 0.0 0.003 0.0 0.0 0.0\"
origin: \"0.0 0.0 -0.0193 0.0 0.0 0.0\"
- linkName: l_foot_rear
geometricShape:
shape: box
size: 0.117 0.100 0.006
origin: \"0.0 0.0 0.003 0.0 0.0 0.0\"
origin: \"0.0 0.0 -0.0193 0.0 0.0 0.0\"
- linkName: r_hip_1
geometricShape:
shape: box
Expand Down
Loading