We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Rotations.jl used to depend on Quaternions.jl, but now there is no dependency on that package. What was the reason for removing the dependency?
I thought it would be better to make it dependent on Quaternions.jl again for the following reasons:
Quaternion
UnitQuaternion <: Rotation
struct UnitQuaternion{T} q::Quaternion{T} end
SkewSymmetricQuaternion <: SkewSymmetric
convert(Quaternion, q)
q isa UnitQuaternion
The text was updated successfully, but these errors were encountered:
UnitQuaternion
Quaternions.jl
This will be fixed in #175, so I will close this issue.
Sorry, something went wrong.
No branches or pull requests
Rotations.jl used to depend on Quaternions.jl, but now there is no dependency on that package.
What was the reason for removing the dependency?
I thought it would be better to make it dependent on Quaternions.jl again for the following reasons:
Quaternion
forUnitQuaternion <: Rotation
struct UnitQuaternion{T} q::Quaternion{T} end
Quaternion
forSkewSymmetricQuaternion <: SkewSymmetric
. (the naming of types are tentative)convert(Quaternion, q)
whereq isa UnitQuaternion
.The text was updated successfully, but these errors were encountered: