-
Notifications
You must be signed in to change notification settings - Fork 288
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
Adding collision sets to CollisionResult #670
Conversation
@@ -3,6 +3,7 @@ | |||
* All rights reserved. | |||
* | |||
* Author(s): Jeongseok Lee <jslee02@gmail.com> | |||
* Michael X. Grey <mxgrey@gatech.edu> |
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.
Nitpick: We've added a comma at the end of the line when adding authors.
Overall, looks good. Could we add a simple test for this? |
Yep, I'm working on a test right now. |
@@ -74,15 +81,73 @@ const std::vector<Contact>& CollisionResult::getContacts() const | |||
} | |||
|
|||
//============================================================================== | |||
const std::unordered_set<const dynamics::BodyNode*> |
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.
Maybe returning const reference instead of just const?
This pull request addresses the discussion in PR #668