Compose

Trait Compose 

Source
pub trait Compose<Inner: LinearMap>: LinearMap<Source = Inner::Dest> {
    type Result: LinearMap<Source = Inner::Source, Dest = Self::Dest>;
}
Expand description

Composition of two LinearMaps, SelfInner.

If Self maps from B to C, and Inner maps from A to B, Self::Result maps from A to C.

Required Associated Types§

Source

type Result: LinearMap<Source = Inner::Source, Dest = Self::Dest>

The result of composing Self with Inner.

Implementors§

Source§

impl<S, I> Compose<RealToReal<3, S, I>> for RealToProj<I>

Source§

impl<const DIM: usize, S, I, D> Compose<RealToReal<DIM, S, I>> for RealToReal<DIM, I, D>

Source§

type Result = RealToReal<DIM, S, D>