pub trait AsMutMatrixParts<T, const C: usize, const R: usize>where
    T: MatrixScalar,
{ fn as_mut_parts(&mut self) -> &mut [[T; R]; C]; }
Expand description

Enables writing to the matrix (via &mut [[T; R]; C])

Required Methods§

Implementors§