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::T
end
function 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.