Sets the elements of this matrix from an array.
Matrix3 fromArray(List<double> array, [int offset = 0 ]) { final e = elements; for ( int i = 0; i < 9; i ++ ) { e[ i ] = array[ i + offset ]; } return this; }