Type Definition rgb_derivation::matrix::Matrix[][src]

type Matrix<K> = [[K; 3]; 3];

A two-dimensional 3×3 array.

The crate assumes a row-major order for the matrix, i.e. the first index specifies the row and the second index specifies column within that row.