It has come to my attention that when I perform rotation around the Z axis on my model, as shown below:
model.rotateZ(rotatedAngle * Math.PI / 180);
The rotation appears to be in a counter-clockwise direction around the axis.
- Can this observation be confirmed?
- Is there any official documentation addressing this behavior? Despite my efforts, I have been unable to locate relevant information.
- Is there a way to adjust this rotation direction?
- What is considered the best approach for handling rotations in this scenario?