i cannot find the definition of scipy's coordinate system. i have tried several values (assuming a right hand system) but got a strange result. for example:
from scipy.spatial.transform import Rotation as R
R.from_euler('zyx', angles=np.array([90,0,0]), degrees=True).as_matrix()
[ [ 0., -1., 0.], [ 1., 0., 0.], [ 0., 0., 1.]]
meaninig the counterclockwise rotation about the z axis (true for a right hand system) is inverse (meaning a left coordinate system)...
where can i find the definition??
Thanks!!!