-
Notifications
You must be signed in to change notification settings - Fork 92
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
Remove unnecessary code in aabb.cpp
#258
base: ros2
Are you sure you want to change the base?
Conversation
I'm not 100% sure whether I should be deleting this or the other part of the code. Is FCL 0.5 the newer or older version in this decision boundary for whether to use their function vs the custom one? According to 96b34aa, I think this is right? |
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## ros2 #258 +/- ##
=========================================
+ Coverage 0 69.06% +69.06%
=========================================
Files 0 21 +21
Lines 0 3370 +3370
Branches 0 325 +325
=========================================
+ Hits 0 2327 +2327
- Misses 0 932 +932
- Partials 0 111 +111 ☔ View full report in Codecov by Sentry. |
The question is what is the minimum (oldest) platform that should be supported on the ros2 branch. I don't know that. |
That should be Ubuntu 22.04 / ROS 2 Humble... which if I recall already has FCL >= 0.6? If not, I can use the conditional as in the noetic branch. |
Ubuntu 22.04 has fcl 0.7 |
According to REP 2000, this PR would only cut support for Tier 3 Ubuntu 20.04. |
Perfect, thanks! So either way the code as is has an issue. We either:
|
As described in #257, I think this code can simply be removed since we don't need the older implementation around for older FCL versions that are not in any of the active ROS 2 distros.
Closes #229
Closes #257