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

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

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

Associated Types

Required methods

Implementors