pub enum StackPerspective {
Axis0,
Axis1,
Axis2,
}Expand description
Which volume dimension a StackView browses through — silx StackView
“perspective”: the orthogonal axis whose index selects the displayed frame.
For a row-major volume of shape [d0, d1, d2] (element (i, j, k) at flat
offset (i * d1 + j) * d2 + k):
Axis0: browse dimension 0 (d0frames); each frame is(d1, d2)= (height, width). silx perspective 0, no transpose.Axis1: browse dimension 1 (d1frames); each frame is(d0, d2). silx perspective 1, transpose(1, 0, 2).Axis2: browse dimension 2 (d2frames); each frame is(d0, d1). silx perspective 2, transpose(2, 0, 1).
Variants§
Axis0
Browse dimension 0; frames are (d1, d2).
Axis1
Browse dimension 1; frames are (d0, d2).
Axis2
Browse dimension 2; frames are (d0, d1).
Implementations§
Source§impl StackPerspective
impl StackPerspective
Sourcepub fn axis(self) -> usize
pub fn axis(self) -> usize
The volume dimension index browsed by this perspective (0, 1, or 2).
Sourcepub fn display_axes(self) -> (usize, usize)
pub fn display_axes(self) -> (usize, usize)
The two non-browsed dimensions as (height_axis, width_axis), ascending
— matching silx __updatePlotLabels (y, x): Axis0→(1, 2),
Axis1→(0, 2), Axis2→(0, 1).
Trait Implementations§
Source§impl Clone for StackPerspective
impl Clone for StackPerspective
Source§fn clone(&self) -> StackPerspective
fn clone(&self) -> StackPerspective
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for StackPerspective
Source§impl Debug for StackPerspective
impl Debug for StackPerspective
Source§impl Default for StackPerspective
impl Default for StackPerspective
Source§fn default() -> StackPerspective
fn default() -> StackPerspective
Returns the “default value” for a type. Read more
impl Eq for StackPerspective
Source§impl PartialEq for StackPerspective
impl PartialEq for StackPerspective
Source§fn eq(&self, other: &StackPerspective) -> bool
fn eq(&self, other: &StackPerspective) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StackPerspective
Auto Trait Implementations§
impl Freeze for StackPerspective
impl RefUnwindSafe for StackPerspective
impl Send for StackPerspective
impl Sync for StackPerspective
impl Unpin for StackPerspective
impl UnsafeUnpin for StackPerspective
impl UnwindSafe for StackPerspective
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.