Expand description
Contains the trait transform::TransformTarget
, for “consumers” of elementary
matrix operations.
Structs§
- Duplicate
Transforms - A
TransformTarget
that forwards all transforms to two fixed delegates. - Offset
Transform Index - A
TransformTarget
that forwards all transforms to a fixed delegate, but offsets every row/column index by a given value. - Transform
Cols - Wraps a
SubmatrixMut
to get aTransformTarget
. Every transform is multiplied to the wrapped matrix from the right, i.e. applied to the cols of the matrix. - Transform
List unstable-enable
- Availability
- Transform
Rows - Wraps a
SubmatrixMut
to get aTransformTarget
. Every transform is multiplied to the wrapped matrix from the left, i.e. applied to the rows of the matrix.
Traits§
- Transform
Target - A trait for a “target” that can “consume” elementary operations on matrices.