BEPUphysics.BroadPhaseSystems.BroadPhase.Remove C# (CSharp) Метод

Remove() публичный Метод

Removes an entry from the broad phase.
public Remove ( BEPUphysics.BroadPhaseSystems.BroadPhaseEntry entry ) : void
entry BEPUphysics.BroadPhaseSystems.BroadPhaseEntry Entry to remove.
Результат void
        public virtual void Remove(BroadPhaseEntry entry)
        {
            if (entry.BroadPhase == this)
                entry.BroadPhase = null;
            else
                throw new Exception("Cannot remove entry; it does not belong to this broad phase.");
        }