Trait mori::orientations::RotVector[][src]

pub trait RotVector {
    fn rot_vector(&self, vec: ArrayView2<f64>) -> Array2<f64>;
fn rot_vector_mut(&self, vec: ArrayView2<f64>, rvec: ArrayViewMut2<f64>);
fn rot_vector_inplace(&self, vec: ArrayViewMut2<f64>); }

A set of methods that allow for rotations of supplied vector data (3x1) dim

Required Methods

Implementors