pub trait VecFloat3Ext {
    fn as_flat(&self) -> &[f64];
fn as_mut_flat(&mut self) -> &mut [f64]; fn ravel(&self) -> Vec<f64> { ... } }

Required methods

View as a flat slice

View of mut flat slice

Provided methods

Return a 1-D array, containing the elements of 3xN array

Implementations on Foreign Types

View as a flat slice

View of mut flat slice

Implementors