[][src]Trait nova_math::traits::ColumnRef

pub trait ColumnRef: Column {
    fn get_column_ref(&self, col: usize) -> &Self::Output;
}

This type abstracts a matrix where you can get a reference of a column

Required methods

fn get_column_ref(&self, col: usize) -> &Self::Output

Get a reference to a given column of a matrix

Loading content...

Implementors

impl<T: Real> ColumnRef for TMat4x4<T>[src]

Loading content...