pub trait Vector3Ext {
// Required methods
fn follow(&mut self, other: &Self, fraction: f32);
fn sqr_distance(&self, other: &Self) -> f32;
fn non_uniform_scale(&self, other: &Self) -> Self;
}
Required Methods§
fn follow(&mut self, other: &Self, fraction: f32)
fn sqr_distance(&self, other: &Self) -> f32
fn non_uniform_scale(&self, other: &Self) -> Self
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.