Skip to content

Commit

Permalink
fix units for manual tcBF rotation
Browse files Browse the repository at this point in the history
  • Loading branch information
sezelt committed Sep 25, 2024
1 parent 4e89904 commit c2c228f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py4D_browser/dialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def reconstruct(self):
self.parent.statusBar().showMessage("Max Shift must be specified")
return

rotation = float(self.rotation_box.text() or 0.0)
rotation = np.radians(float(self.rotation_box.text() or 0.0))
transpose = self.transpose_box.checkState()
max_shift = float(self.max_shift_box.text())

Expand Down

0 comments on commit c2c228f

Please sign in to comment.