Trait geomath::prelude::Rows[][src]

pub trait Rows<T> where
    Self: Sized + Initializer
{ fn rows(&self) -> T;
fn set_rows(&mut self, rows: &T) -> &mut Self; fn from_rows(rows: &T) -> Self { ... } }
Expand description

Access the matrix as an array of rows ordered from left to right

Required methods

Get the rows of a matrix

Set the rows of a matrix

Provided methods

Get a matrix from rows array

Implementors