-
-
Notifications
You must be signed in to change notification settings - Fork 485
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
Need to add alga
crate dependency in order to use MatrixN::transform_point
#372
Comments
I agree the documentation should clarify the fact the For now, I'd prefer not to reexport the trait to keep it clear the abstract traits cone from alga. |
Closing this in favor of dimforge/nalgebra.rs#6 |
Would it make sense to wrap these trait methods as inherent methods for convenience? |
That can be considered if that makes it easier to use, yes. |
This was fixed by #457. Closing. |
While reading the user guide on Using raw transformation matrices on points and vectors1, I saw that it mentions the
transform_point
andtransform_vector
methods but doesn't say that in order to use them you must bring thealga::linear::Transformation
trait to scope. Looking at the source code in the doc and the example2 make it clear, but at first it was a little misleading.I didn't found another way to use those methods that adding the alga crate to my Cargo.toml. So I was thinking, would it be a good idea to reexport the
alga::linear::Transformation
? Or is it better to leave it like that and just add a comment in the documentation?The text was updated successfully, but these errors were encountered: