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

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

Required Methods§

source

fn as_mut_parts(&mut self) -> &mut [[T; R]; C]

Implementors§