Trait Row

Source
pub trait Row {
    type Output;

    // Required method
    fn get_row(&self, row: usize) -> Self::Output;
}
Expand description

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

Required Associated Types§

Required Methods§

Source

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

Get a copy of a given row of a matrix

Implementors§

Source§

impl<T: Real> Row for TMat4x4<T>