I am reading Kuipers' book, I am struggling with following problem
Consider an XYZ coordinate frame, with the vector $v_0 = (1,1,1)$ through an angle $\phi = 2\pi/3$. It is geometrically clear that such a rotation results in a new frame in which the new x-axis coincides with former Y-axis, the new y-axis coincides with the former Z-axis, and the new z-axis coincides with the initial X-axis.
$(1,0,0) \rightarrow (0,0,1)$
$(0,1,0) \rightarrow (1,0,0)$
$(0,1,0) \rightarrow (0,1,0)$
My question is, could you figure out without any calculations, just by drawing lets say, deduce that $(1,0,0)$ will transform to $(0,0,1)$?, because the author says, "It is geometrically clear that such a rotation results in a new frame ..." In my case, I have to calculate the rotation matrix, write some code and verified numerically that indeed $(1,0,0)$ will transform to $(0,0,1)$ but I can't imagine in my head how each rotation transform the vectors.

