logo
pub trait FromMatrixParts<T: MatrixScalar, const C: usize, const R: usize> {
    fn from_parts(parts: [[T; R]; C]) -> Self;
}
Expand description

Enables the cration of a matrix (via [[T; R]; C])

Required Methods

Implementations on Foreign Types

Implementors