Function rgb_derivation::matrix::transposed_copy[][src]

pub fn transposed_copy<K: Clone>(matrix: &Matrix<K>) -> Matrix<K>

Transposes a 3×3 matrix. Constructs a new matrix and returns it.

This is equivalent to transposed except that it doesn’t consume the argument and returns a new object.