Skip to main content

Matrix1

Type Alias Matrix1 

Source
pub type Matrix1<T> = SquareMatrix<T, 1>;
Expand description

1x1 matrix

Aliased Type§

#[repr(C)]
pub struct Matrix1<T> { pub columns: Vector<Vector<T, 1>, 1>, }

Fields§

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