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
params
RotationGenerator
I was forgetting to add params methods in #203.
julia> using Rotations julia> RotationVecGenerator(1,2,3) 3×3 RotationVecGenerator{Int64} with indices SOneTo(3)×SOneTo(3)(1, 2, 3): 0 -3 2 3 0 -1 -2 1 0 julia> Rotations.params(RotationVecGenerator(1,2,3)) ERROR: MethodError: no method matching params(::RotationVecGenerator{Int64}) Closest candidates are: params(::RotZY) at ~/.julia/dev/Rotations/src/euler_types.jl:259 params(::AngleAxis) at ~/.julia/dev/Rotations/src/angleaxis_types.jl:40 params(::RotY) at ~/.julia/dev/Rotations/src/euler_types.jl:37 ... Stacktrace: [1] top-level scope @ REPL[4]:1
The text was updated successfully, but these errors were encountered:
Rotations.params
Successfully merging a pull request may close this issue.
I was forgetting to add
params
methods in #203.The text was updated successfully, but these errors were encountered: