Struct nalgebra::Mat1
[−]
[src]
pub struct Mat1<N> { pub m11: N, }
Square matrix of dimension 1.
Fields
m11 |
Methods
impl<N> Mat1<N>
impl<N> Mat1<N>
fn as_array(&self) -> &[[N; 1]; 1]
View this matrix as a column-major array of arrays.
fn as_array_mut<'a>(&'a mut self) -> &'a mut [[N; 1]; 1]
View this matrix as a column-major mutable array of arrays.
fn from_array_ref(array: &[[N; 1]; 1]) -> &Mat1<N>
View a column-major array of array as a vector.
fn from_array_mut(array: &mut [[N; 1]; 1]) -> &mut Mat1<N>
View a column-major array of array as a mutable vector.