diff --git a/python/damask/_rotation.py b/python/damask/_rotation.py index bea7aa5e6..ff4025ddc 100644 --- a/python/damask/_rotation.py +++ b/python/damask/_rotation.py @@ -206,7 +206,7 @@ class Rotation: """ ax = Rotation.qu2ax(self.quaternion) if degrees: ax[3] = np.degrees(ax[3]) - return (ax[:3],np.degrees(ax[3])) if pair else ax + return (ax[:3],ax[3]) if pair else ax def asMatrix(self): """Rotation matrix."""