pub trait SetMatrix {
// Required method
fn set_matrix(&self, matrix: &Matrix) -> &Self;
}
Required Methods§
Sourcefn set_matrix(&self, matrix: &Matrix) -> &Self
👎Deprecated since 0.38.0: Use M44 version
fn set_matrix(&self, matrix: &Matrix) -> &Self
DEPRECATED – use M44
version
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.