-
-
Notifications
You must be signed in to change notification settings - Fork 484
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
Feature Request: implement all the things from alga #511
Comments
They are already all implemented whenever they are relevant. We may have missed a few spots though. Do you have anything specific in mind? What type should implement |
I think this may be an unfortunate API discoverability issue. Although To solve this, we can add this to /// For documentation purposes only; do not rely on items from this module.
#[deprecated(note = "For documentation purposes only; do not rely on items from this module.")]
pub mod alga_documentation {
pub use alga::*;
} This will cause rustdoc to display all of the nalgebra types that implement each trait: Once |
I see. That's unfortunate, but thanks for getting back to me! I saw no implementors in the alga docs and assumed they hadn't been implemented. However it's great that they are already implemented! :) |
It seems that the implementation of AffineTransformation for Transformation is commented out with a note saying that you need SVD, but I think SVD is implemented. I tried to get it working but can't cope with the trait bound errors :'( |
Since the design of |
I was looking for implementors of
alga::linear::AffineTransformation
, but the request could equally apply to other traits. Is it part of the plan to implement them all?The text was updated successfully, but these errors were encountered: