pub trait Vector2Ext {
    fn follow(&mut self, other: &Self, fraction: f32);
    fn per_component_min(&self, other: &Self) -> Self;
    fn per_component_max(&self, other: &Self) -> Self;
}

Required Methods§

Implementations on Foreign Types§

Implementors§