[][src]Trait nova_math::traits::ColumnRefMut

pub trait ColumnRefMut: Column {
    fn get_column_ref_mut(&mut self, col: usize) -> &mut Self::Output;
}

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

Required methods

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

Get a mutable reference to a given column of a matrix

Loading content...

Implementors

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

Loading content...