[][src]Trait nova_math::traits::Row

pub trait Row {
    type Output;
    fn get_row(&self, row: usize) -> Self::Output;
}

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

Associated Types

type Output

Loading content...

Required methods

fn get_row(&self, row: usize) -> Self::Output

Get a copy of a given row of a matrix

Loading content...

Implementors

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

type Output = TVec4<T>

Loading content...