Axiom.Core.ProgressiveMesh.PMVertex.NotifyRemoved C# (CSharp) Method

NotifyRemoved() private method

private NotifyRemoved ( ) : void
return void
			internal void NotifyRemoved()
			{
				foreach ( PMVertex vertex in neighbors )
				{
					// Remove me from neighbor
					vertex.neighbors.Remove( this );
				}
				removed = true;
				this.collapseTo = null;
				this.collapseCost = float.MaxValue;
			}
			#endregion