pub trait LinearMap {
type Source;
type Dest;
}Expand description
A linear transform from one space (or basis) to another.
This is a tag trait with no functionality in itself. It is used to statically ensure that only compatible maps can be composed, and that only compatible vectors can be transformed.