pub trait VectorExt: Sized + Copy {
// Required methods
fn ith(i: usize, val: f32) -> Self;
fn angle(self, other: Self) -> f32;
fn kronecker(self, other: Self) -> Matrix;
}Expand description
Extension trait for glam vector types to provide additional functionality.
Required Methods§
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.