logo
pub trait FromVectorParts<T, const N: usize> where
    T: VectorScalar
{ fn from_parts(parts: [T; N]) -> Self; }
Expand description

Enables the cration of a vector (via [T; N])

Required Methods

Implementors