Smrf.NodeXL.Visualization.Wpf.GraphDrawer.DrawNewVertex C# (CSharp) Method

DrawNewVertex() public method

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

        DrawVertex(newVertex, graphDrawingContext);
    }