Skip to main content

SquareMatrix

Type Alias SquareMatrix 

Source
pub type SquareMatrix<T, const N: usize> = Matrix<T, N, N>;
Expand description

NxN matrix

Aliased Type§

#[repr(C)]
pub struct SquareMatrix<T, const N: usize> { pub columns: Vector<Vector<T, N>, N>, }

Fields§

§columns: Vector<Vector<T, N>, N>