[][src]Trait nova_math::traits::Column

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

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

Associated Types

type Output

Loading content...

Required methods

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

Get a copy of a given column of a matrix

Loading content...

Implementors

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

type Output = TVec4<T>

Loading content...