-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Hotfix/v1.6.1 normalized quaternion vectormap #1019
Conversation
@@ -1344,6 +1344,7 @@ visualization_msgs::Marker createMarker(const std::string& ns, int id, int type) | |||
marker.id = id; | |||
marker.type = type; | |||
marker.lifetime = ros::Duration(); | |||
marker.pose.orientation= tf::createQuaternionMsgFromRollPitchYaw(0, 0, 0); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
plz fix with same method
orientation.w = 1.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
want one more reviewer |
@kitsukawa, pls review this.
2018/01/09 午後7:00 "Yusuke FUJII" <notifications@github.com>:
… want one more reviewer
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1019 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAToCzDev22eQzhDD0oirKjx9A6aucAdks5tIzitgaJpZM4RXiNU>
.
|
it now works properly even without this PR due to RVIZ was modified, |
The fix should also go into develop. |
@dejanpan |
Status
**PRODUCTION **
Description
This PR solves the issue of autowarefoundation/autoware_ai#11 .
The initial value of geometry_msgs::Quaternion is (x, y, z, w = 0, 0, 0, 0),
but RVIZ only accepts normalized quaternions.
Please review the reviewer for any missing corrections.