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]

Implementations on Foreign Types§

source§

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

source§

fn as_mut_parts(&mut self) -> &mut [[f32; 4]; 4]

source§

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

source§

fn as_mut_parts(&mut self) -> &mut [[f32; 3]; 3]

source§

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

source§

fn as_mut_parts(&mut self) -> &mut [[f32; 2]; 2]

Implementors§