[][src]Trait vecfx::VecFloat3Ext

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

Required methods

fn as_flat(&self) -> &[f64]

View as a flat slice

fn as_mut_flat(&mut self) -> &mut [f64]

View of mut flat slice

Loading content...

Provided methods

fn ravel(&self) -> Vec<f64>

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

Loading content...

Implementations on Foreign Types

impl VecFloat3Ext for [[f64; 3]][src]

fn as_flat(&self) -> &[f64][src]

View as a flat slice

fn as_mut_flat(&mut self) -> &mut [f64][src]

View of mut flat slice

Loading content...

Implementors

Loading content...