-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fast linear 2d interpolation #48
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #48 +/- ##
==========================================
- Coverage 77.85% 77.52% -0.33%
==========================================
Files 16 17 +1
Lines 1192 1228 +36
Branches 253 265 +12
==========================================
+ Hits 928 952 +24
- Misses 252 258 +6
- Partials 12 18 +6 ☔ View full report in Codecov by Sentry. |
(cl > 0.0 || cl < 0.0) && | ||
(det > 0.0 || det < 0.0)) | ||
return radius.magnitude2(); | ||
return (std::numeric_limits<double>::max)(); |
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.
is this a crutch?
No description provided.