I have a vector $(a,b,c)$ and another vector $(d,e,f)$. I'm trying to rotate $(a,b,c)$ so its parallel to $(d,e,f)$ using quaternions. I need help understanding how I would do this.
I have so far that a quaternion is defined as
q = w + xi + yj + zk
so then I have
q1 = 0 + ai + bj + ck
q2 = 0 + di + ej + fk
But now I'm not sure what to do next...