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