Trait mori::orientations::RotTensor[][src]

pub trait RotTensor {
    fn rot_tensor(&self, tensor: ArrayView3<f64>) -> Array3<f64>;
fn rot_tensor_mut(
        &self,
        tensor: ArrayView3<f64>,
        rtensor: ArrayViewMut3<f64>
    );
fn rot_tensor_inplace(&self, tensor: ArrayViewMut3<f64>); }

A set of methods that allow for rotations of supplied 2nd order tensor data (3x3) dim

Required Methods

Implementors