I have rotations expressed as axis-angle pairs.
I want to linearly interpolate between two rotations such that if I would animate the interpolation, the resulting rotation would be the most direct transition between the two orientations. What I currently do is convert these axis-angle rotations to a quaternion, then perform SLERP and then convert back.
Is there a more efficient (in terms of computational cost)/direct way of doing this?