You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just tried to use the default quaternion - Quaternion() - in a situation where I don't have rotation information and got an error that this quaternion is invalid. The solution was really simple, just added w = 1 as a keyword parameter. I would suggest that to be the default quaternion.
I'm new to open source... but I imagine I should fork, change that and submit a pull request, right?
The text was updated successfully, but these errors were encountered:
I don't think such PR would go through. Zero-initialized fields are a pretty standardized thing in ROS messages and nobody should expect anything else. It's the same with colors: if you set just RGB, and forget to set alpha to 1.0, your markers do not show up. The takeaway is - you always need to know and understand the data you are sending.
I just tried to use the default quaternion -
Quaternion()
- in a situation where I don't have rotation information and got an error that this quaternion is invalid. The solution was really simple, just addedw = 1
as a keyword parameter. I would suggest that to be the default quaternion.I'm new to open source... but I imagine I should fork, change that and submit a pull request, right?
The text was updated successfully, but these errors were encountered: