pub trait Project<B> {
    type Output;
    fn project(&self, b: B) -> Self::Output;
}
Expand description

Trait for finding the parallel component of a blade B onto Self

Used primarily to drive Blade::project(), SimpleBlade::project(), and UnitBlade::project()

Associated Types

Required methods

Implementors