Smrf.NodeXL.Visualization.Wpf.GraphDrawer.DrawNewVertex C# (CSharp) 메소드

DrawNewVertex() 공개 메소드

public DrawNewVertex ( IVertex newVertex, GraphDrawingContext graphDrawingContext ) : void
newVertex IVertex
graphDrawingContext GraphDrawingContext
리턴 void
    DrawNewVertex
    (
        IVertex newVertex,
        GraphDrawingContext graphDrawingContext
    )
    {
        Debug.Assert(newVertex != null);
        Debug.Assert(graphDrawingContext != null);
        AssertValid();

        DrawVertex(newVertex, graphDrawingContext);
    }