I am trying to rotate an object around the world axis. I\'ve found this question: How to rotate a object on axis world three.js?
But it didn\'t solve the problem by
As long as the object does not have a rotated parent, you can rotate the object around a world axis like so:
object.rotateOnWorldAxis( axis, angle );
axis must be normalized (have unit length); angle is in radians.
axis
angle
three.js r.92