Data.transposeBigBlocks C# (CSharp) Method

transposeBigBlocks() private method

private transposeBigBlocks ( BigBlock bblocks ) : void
bblocks BigBlock
return void
    private void transposeBigBlocks(BigBlock[] bblocks)
    {
        for (int i = 0; i < bblocks.Length; i++)
        {
        var bb = bblocks[i];
        var newIndexes = new int[] {
          bb.indexes[0], bb.indexes[4], bb.indexes[1], bb.indexes[5],
          bb.indexes[2], bb.indexes[6], bb.indexes[3], bb.indexes[7]
        };
        bb.indexes = newIndexes;
        }
    }
Data