Skip to content

Commit

Permalink
Added args and kwargs to plot_sinos
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewHerzing committed Jun 18, 2024
1 parent 56b36d1 commit d3484eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tomotools/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,12 +326,12 @@ class TomoStack(CommonStack):
CommonStack class
"""

def plot_sinos(self):
def plot_sinos(self, *args, **kwargs):
"""
Plot the TomoStack in sinogram orientation
Plot the TomoStack in sinogram orientation.
"""
self.swap_axes(1, 0).swap_axes(1, 2).plot()
self.swap_axes(1, 0).swap_axes(1, 2).plot(navigator='slider', *args, **kwargs)
return

def remove_projections(self, projections=None):
Expand Down

0 comments on commit d3484eb

Please sign in to comment.