pub trait ReadMat3x3<T> { // Required method fn at(&self, row: usize, col: usize) -> &T; }
Interface for reading entries of a 3x3 matrix.
Returns the entry at the given row and column.
Both row and col are zero-based.
row
col