python
get rotation angle between two vectors
Getting the angle between two vectors is well known. But finding the ‘rotation angle’ from one vector to another needs a bit more consideration. The following functions can handle this. This function will use cross product between two vectors to identify if the rotation direction is CW or CCW. This Read more…