You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed in #210, it's better to follow the order of SVector.
julia> aa =AngleAxis(2.4, 0, 0, 1) # angle, x, y, z3×3 AngleAxis{Float64} with indices SOneTo(3)×SOneTo(3)(2.4, 0.0, 0.0, 1.0):-0.737394-0.6754630.00.675463-0.7373940.00.00.01.0
julia> Rotations.params(aa).z # this should be 10.0
julia> Rotations.params(aa).w # this should be 2.41.0
If we change the order from (theta, axis_x, axis_y, axis_z) to (axis_x, axis_y, axis_z, theta) (or just (x,y,z,angle)), then the name of the type should be changed to AxisAngle.
The text was updated successfully, but these errors were encountered:
As discussed in #210, it's better to follow the order of
SVector
.If we change the order from
(theta, axis_x, axis_y, axis_z)
to(axis_x, axis_y, axis_z, theta)
(or just(x,y,z,angle)
), then the name of the type should be changed toAxisAngle
.The text was updated successfully, but these errors were encountered: