Trait Matrix

Source
pub trait Matrix<T> {
    // Required method
    fn transform_point(&self, point: &T) -> T;
}

Required Methods§

Source

fn transform_point(&self, point: &T) -> T

Implementors§