I am trying to rotate an object around a point in UrhoSharp. I have done a lot of learning on how Quaternions work but he node.RotateAround method dosn't seem to follow the rules.
When w = 0 or PI I seem to get the correct rotation. However, if I use any other number I cannot seem to know which way the object will be rotated.
float w = 0;//or PI
node.RotateAround(point, new Quaternion(Vector3.Up, w) , transformSpace.World);
If anyone has any potints with working with quaterions I would be grateful.