Set the offset for the location of 0 in radians.
(self, offset)
| 1070 | return tuple(np.rad2deg((new_min, new_max))) |
| 1071 | |
| 1072 | def set_theta_offset(self, offset): |
| 1073 | """ |
| 1074 | Set the offset for the location of 0 in radians. |
| 1075 | """ |
| 1076 | mtx = self._theta_offset.get_matrix() |
| 1077 | mtx[0, 2] = offset |
| 1078 | self._theta_offset.invalidate() |
| 1079 | |
| 1080 | def get_theta_offset(self): |
| 1081 | """ |