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§

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

Implementors§

§

impl AsMutMatrixParts<f32, 2, 2> for Mat2where Mat2: AsMut<[f32; 4]>, f32: MatrixScalar,

§

impl AsMutMatrixParts<f32, 3, 3> for Mat3where Mat3: AsMut<[f32; 9]>, f32: MatrixScalar,

§

impl AsMutMatrixParts<f32, 4, 4> for Mat4where Mat4: AsMut<[f32; 16]>, f32: MatrixScalar,