-
Notifications
You must be signed in to change notification settings - Fork 98
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
Absolem: Remove debug visuals #852
Merged
nkoenig
merged 52 commits into
osrf:absolem_visuals_fix
from
ctu-vras:submitted_models/ctu_cras_norlab_absolem/remove_annoying_visuals
Apr 1, 2021
Merged
Absolem: Remove debug visuals #852
nkoenig
merged 52 commits into
osrf:absolem_visuals_fix
from
ctu-vras:submitted_models/ctu_cras_norlab_absolem/remove_annoying_visuals
Apr 1, 2021
Conversation
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
… it doesn't matter as it only rotates a symmetrical cube visual.
No geometrical change (verified visually).
…orrespond to the desired values in SDF.
After this commit, the model.sdf can be exactly recreated by the update_robot_sdf script. Until gazebosim/sdformat#525 gets merged, `ign sdf -p` does not account for the reduced joint transform when outputting sensors attached to lumped frames. But it copies `<sensor><pose>` verbatim, so I took the old values from SDF and put them temporarily in `<sensor><pose>` where they specify relative position of the sensor to base_link where they get lumped. Printing of the resulting SDF memory model results in flipping one Euler notation, but it's a 100% equivalent transform. Here's a proof by Ignition Math: Quaterniond initialized by (-2.19645, -1.5707963267948966, 0) has: - coefs: -0.629608 -0.321859 -0.629608 0.321859 - Euler: -2.19645 -1.5708 0 Quaterniond initialized by (3.1415926535897931, -1.5707963267948966, 0.945143) has: - coefs: 0.629608 0.321859 0.629608 -0.321859 - Euler: -2.19645 -1.5708 0 This proves that the one changed line in model.sdf means no practical change.
…d were not good for anything else.
This would need a re-upload to Fuel. |
This was referenced Mar 31, 2021
nkoenig
approved these changes
Apr 1, 2021
Closed
This PR has been replaced by #878 . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There are some visuals we forgotten to remove on Absolem. They create annoying artifacts in the omnicamera. This PR removes the visuals (all of them were black cubes 0.5x0.5x0.5 cm I used to debug placement of the camera sensors).
Cameras without this PR:
Cameras with this PR:
I based this PR on top of #851 . After merging #851, this will be just a single commit. Look at the last commit in this PR during review only.