-
-
Notifications
You must be signed in to change notification settings - Fork 104
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
Address a few TODOs #273
Address a few TODOs #273
Conversation
src/query/ray/ray.rs
Outdated
// TODO: use a Unit<Vector> instead. // TODO: Thierry: should we use Unit for [`Ray::dir`] too ? | ||
pub normal: Vector<Real>, |
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.
not entirely trivial to do ; and will have API impacts
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.
Looks good, thanks! This needs CHANGELOG entries to indicate the (breaking) changes.
src/lib.rs
Outdated
@@ -11,7 +11,7 @@ the rust programming language. | |||
#![deny(unused_parens)] | |||
#![deny(non_upper_case_globals)] | |||
#![deny(unused_results)] | |||
#![warn(missing_docs)] // TODO: deny this | |||
#![deny(missing_docs)] |
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.
Let’s keep this a warn
and remove the TODO
. I find it more convenient to just warn locally, and have it fail only on CI by denying warnings.
Could we also have a PR for rapier that addresses the removal of Rapier doesn't just let me use the suggested visitor in place of this |
Thanks @wlinna for bringing this to our attention!
|
No description provided.