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 Mat2
where Mat2: AsMut<[f32; 4]>, f32: MatrixScalar,

§

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

§

impl AsMutMatrixParts<f32, 4, 4> for Mat4