Trait bevy_render::render_resource::encase::matrix::FromMatrixParts
source · pub trait FromMatrixParts<T, const C: usize, const R: usize>where
T: MatrixScalar,{
// Required method
fn from_parts(parts: [[T; R]; C]) -> Self;
}
Expand description
Enables the creation of a matrix (via [[T; R]; C]
)
Required Methods§
fn from_parts(parts: [[T; R]; C]) -> Self
Object Safety§
This trait is not object safe.