pub type MatrixSlice3x4<'a, T, RStride = Const<1>, CStride = Const<3>> = Matrix<T, Const<3>, Const<4>, SliceStorage<'a, T, Const<3>, Const<4>, RStride, CStride>>;
Expand description

A column-major 3x4 matrix slice.

Because this is an alias, not all its methods are listed here. See the Matrix type too.