From d3484eb02e7407e8487f8379695ea6240b1894a4 Mon Sep 17 00:00:00 2001 From: Andrew Herzing Date: Tue, 18 Jun 2024 15:31:31 -0400 Subject: [PATCH] Added args and kwargs to plot_sinos --- tomotools/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tomotools/base.py b/tomotools/base.py index 3c2b9e54..e9229501 100644 --- a/tomotools/base.py +++ b/tomotools/base.py @@ -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):