place this array into this matrix
Mat33 fromArray(List<double> array, [int offset = 0]) { for(int i = 0; i < 9; i ++ ) { elements[ i ] = array[ i + offset ]; } return this; }