fairmotion/ops/conversions.py [126:133]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if isinstance(theta, np.ndarray):
        R = np.zeros(theta.shape + (3, 3))
        R[...] = constants.eye_R()
    else:
        R = constants.eye_R()
    c = np.cos(theta)
    s = np.sin(theta)
    R[..., 0, 0] = c
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



fairmotion/ops/conversions.py [144:151]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if isinstance(theta, np.ndarray):
        R = np.zeros(theta.shape + (3, 3))
        R[...] = constants.eye_R()
    else:
        R = constants.eye_R()
    c = np.cos(theta)
    s = np.sin(theta)
    R[..., 0, 0] = c
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



