-
Notifications
You must be signed in to change notification settings - Fork 49
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
Adds a message that allows loading environments via a topic #320
Conversation
Codecov Report
@@ Coverage Diff @@
## gz-msgs9 #320 +/- ##
============================================
+ Coverage 95.41% 95.57% +0.15%
============================================
Files 10 10
Lines 1026 1062 +36
============================================
+ Hits 979 1015 +36
Misses 47 47
|
include/gz/msgs/Utility.hh
Outdated
@@ -212,6 +220,14 @@ namespace gz | |||
msgs::SphericalCoordinates Convert( | |||
const math::SphericalCoordinates &_coord); | |||
|
|||
/// \brief Convert a msgs::SphericalCoordinatesType to an | |||
/// gz::math::SphericalCoordinates::CoordinateTpye | |||
/// \param[in] _coord The spherical coordinates to convert |
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.
The spherical coordinate type ...
src/Utility.cc
Outdated
case math::SphericalCoordinates::CoordinateType::LOCAL: | ||
return msgs::SphericalCoordinatesType::LOCAL; | ||
case math::SphericalCoordinates::CoordinateType::LOCAL2: | ||
return msgs::SphericalCoordinatesType::LOCAL2; |
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.
This block returns a warning as we don't return anything if none of the previous conditions are met.
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.
Tiny comment, otherwise looks good to me.
Required by gazebosim/gz-sim#1842 Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org>
Signed-off-by: Arjo Chakravarty <arjo@openrobotics.org>
a89aee2
to
cc4ce08
Compare
I suggest holding off on merging this till gazebosim/gz-sim#1842 is complete. |
…ment_data_messages
Signed-off-by: Arjo Chakravarty <arjoc@intrinsic.ai>
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.
There are some open comments from Carlos here, if you could address them.
Signed-off-by: Arjo Chakravarty <arjoc@intrinsic.ai>
Signed-off-by: Arjo Chakravarty <arjoc@intrinsic.ai>
@mjcarroll I've addressed the issues. It's waiting on a ✔️ from you. |
This was merged with "Merge commit". Let's remember to use "Squash-Merge" next time. |
🦟 Bug fix
Fixes #
Summary
Required by gazebosim/gz-sim#1842
Signed-off-by: Arjo Chakravarty arjo@openrobotics.org
Checklist
codecheck
passed (See contributing)Note to maintainers: Remember to use Squash-Merge and edit the commit message to match the pull request summary while retaining
Signed-off-by
messages.