-
Notifications
You must be signed in to change notification settings - Fork 421
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
Fix failure in building point cloud models for OBB/RSS/kIOS/OBBRSS (issue #67) #72
Conversation
+1 for the test passing, but I'm not very familiar with the details of what has changed, so I'll wait for someone else to review as well. |
boost::shared_ptr<octomap::OcTree> getTree() | ||
{ | ||
return tree; | ||
} |
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.
It seems this accessor is added to address #73, which looks good to me. It would also good to provide const version of getTree()
for const correctness as:
boost::shared_ptr<const octomap::OcTree> getTree() const
{
return tree;
}
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.
We might be able to add this later.
👍 I believe this pull request is ready to merge. |
I'd like to merge this unless someone has an objection. @ricardoglc could you resolve the confliction so that we could merge this? |
Close in favor of #237 |
The functions beginModel, addTriangle and addSubModel now respect documentation, keeping tri_indices as NULL for point clouds. This fixes issue #67 .