Smrf.NodeXL.Visualization.Wpf.CircleVertexDrawingHistory.CircleVertexDrawingHistory C# (CSharp) Method

CircleVertexDrawingHistory() public method

Initializes a new instance of the class.
public CircleVertexDrawingHistory ( IVertex vertex, System.Windows.Media.DrawingVisual drawingVisual, System.Boolean drawnAsSelected, Double radius ) : System
vertex IVertex /// The vertex that was drawn. ///
drawingVisual System.Windows.Media.DrawingVisual /// The DrawingVisual object that was used to draw the vertex. ///
drawnAsSelected System.Boolean /// true if the vertex was drawn as selected. ///
radius Double /// The radius of . ///
return System
    public CircleVertexDrawingHistory
    (
        IVertex vertex,
        DrawingVisual drawingVisual,
        Boolean drawnAsSelected,
        Double radius
    )
    : base(vertex, drawingVisual, drawnAsSelected)
    {
        m_dRadius = radius;

        // AssertValid();
    }