pub trait Vector3Ext {
    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

Implementations on Foreign Types

Implementors