pub trait AsMutVectorParts<T, const N: usize>where
    T: VectorScalar,
{ fn as_mut_parts(&mut self) -> &mut [T; N]; }
Expand description

Enables writing to the vector (via &mut [T; N])

Required Methods§

Implementors§