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
I know the package only implements 3D rotations, but it would be nice to add this tiny struct for convenience and have conversion methods with DCM. Something as simple as
struct ClockwiseAngle{T}
a::Tendfunction Base.convert(::Type{<:DCM}, cw::ClockwiseAngle)
s, c =sincos(cw.a)
@SMatrix [c s; -s c]
end
I can submit a PR for that if you feel that it is useful.