pub trait VectorOperations<T> {
// Required methods
fn length(&self) -> f64;
fn normalize(&self) -> Vec2<f64>;
fn dot(&self, rhs: &Self) -> T;
}
Expand description
Common operations on vectors.
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.