BEPUphysics.EntityStateManagement.InterpolatedStatesManager.Remove C# (CSharp) Method

Remove() private method

private Remove ( int index, int endIndex ) : void
index int
endIndex int
return void
        internal void Remove(int index, int endIndex)
        {
            //Don't need to lock since the parent manager handles it.
            states[index] = states[endIndex];
            backBuffer[index] = backBuffer[endIndex];
        }
    }