Matrix2 fromArray(List<double> array, [int offset = 0 ]) { for (int i = 0; i < 4; i ++ ) { this.storage[ i ] = array[ i + offset ]; } return this; }