We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Original report (archived issue) by Louise Poubel (Bitbucket: chapulina, GitHub: chapulina).
It looks like plane updates are resetting the normal direction, but not the pose.
Load the sloped_normal world, which has this ground plane:
<model name="ground_plane"> ... <visual name="visual"> <geometry> <plane> <normal>0.2 0.0 1</normal> <size>100 100</size> </plane> </geometry> </visual> ... </model>
Press play and see the world snap to horizontal:
Now try the sloped_pose world, which has a slope due to model pose, not normal, i.e.:
<model name="ground_plane"> <pose>0 0 0 0.1 0 0</pose> ... <visual name="visual"> <geometry> <plane> <normal>0 0 1</normal> <size>100 100</size> </plane> </geometry> </visual> ... </model>
Press play, and the plane doesn't move, as it should be.
Expected behavior:
The plane should maintain its normal direction once simulation starts.
Actual behavior:
It looks like the plane's normal is being reset to unit Z.
Reproduces how often:
100%
default branch, version 2 candidate
default
I suspect we may be forgetting to propagate the normal correctly at some point.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original report (archived issue) by Louise Poubel (Bitbucket: chapulina, GitHub: chapulina).
Prerequisites
Description
It looks like plane updates are resetting the normal direction, but not the pose.
Steps to Reproduce
Load the sloped_normal world, which has this ground plane:
Press play and see the world snap to horizontal:
Now try the sloped_pose world, which has a slope due to model pose, not normal, i.e.:
Press play, and the plane doesn't move, as it should be.
Expected behavior:
The plane should maintain its normal direction once simulation starts.
Actual behavior:
It looks like the plane's normal is being reset to unit Z.
Reproduces how often:
100%
Versions
default
branch, version 2 candidateAdditional Information
I suspect we may be forgetting to propagate the normal correctly at some point.
The text was updated successfully, but these errors were encountered: