BEPUphysics.BroadPhaseSystems.SortAndSweep.Grid2DSortAndSweep.UpdateCell C# (CSharp) 메소드

UpdateCell() 개인적인 메소드

private UpdateCell ( int i ) : void
i int
리턴 void
        void UpdateCell(int i)
        {
            //TODO: Consider permuting.
            //In some simulations, there may be a ton of unoccupied cells.
            //It would be best to distribute these over the threads.
            //(int)((i * 122949823L) % cellSet.count)
            //(i * 122949823L) % cellSet.count
            cellSet.cells.Elements[i].UpdateOverlaps(this);
        }
    }