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

DrawNewEdge() public method

public DrawNewEdge ( IEdge newEdge, GraphDrawingContext graphDrawingContext ) : void
newEdge IEdge
graphDrawingContext GraphDrawingContext
return void
    DrawNewEdge
    (
        IEdge newEdge,
        GraphDrawingContext graphDrawingContext
    )
    {
        Debug.Assert(newEdge != null);
        Debug.Assert(graphDrawingContext != null);
        AssertValid();

        DrawEdge(newEdge, graphDrawingContext);
    }